|
窗口程序集名 | 保 留 | 保 留 | 备 注 | 窗口程序集_启动窗口 | | | | 登陆 (“账号”, “密码”)变量名 | 类 型 | 静态 | 数组 | 备 注 | url | 文本型 | | | res | 文本型 | | | 密码sign | 文本型 | | | time | 文本型 | | | 协议头sign | 文本型 | | | 协议头 | 文本型 | | | random | 文本型 | | | 待加密 | 文本型 | | |
url = “https://api.pzds.com/api/web-client/v2/user/public/login/password”密码sign = 校验_取md5 (到字节集 (密码 )) time = 时间_取现行时间戳 ()置随机数种子 ()random = 到文本 (取随机数 (821111, 999999 )) 待加密 = “PZTimestamp=” + time + “&Random=” + random + “&2147483647=%7B%22action%22%3A%7B%22phone%22%3A%22” + 账号 + “%22%2C%22password%22%3A%22” + 密码sign + “%22%2C%22openId%22%3Anull%2C%22thirdType%22%3Anull%2C%22unionId%22%3Anull%7D%7D&accessKey=3qXyB7uf”协议头sign = 校验_取md5_文本 (待加密 )调试输出 (random, time, 密码sign, 协议头sign )协议头 = 文本_替换 ( #常量1, , , , “时间戳”, time, “校验”, 协议头sign, “哈哈”, random )res = 编码_URL解码 (到文本 (网页_访问_对象 (url, 1, “{” + #引号 + “action” + #引号 + “:{” + #引号 + “phone” + #引号 + “:” + #引号 + 账号 + #引号 + “,” + #引号 + “password” + #引号 + “:” + #引号 + 密码sign + #引号 + “,” + #引号 + “openId” + #引号 + “:null,” + #引号 + “thirdType” + #引号 + “:null,” + #引号 + “unionId” + #引号 + “:null}}”, , , 协议头 )), 真)调试输出 (res )返回 (res ) |
|