吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 212|回复: 5
收起左侧

[其他求助] python post 问题。

[复制链接]
uujolin 发表于 2024-8-31 22:57
25吾爱币
import js2py
import requests
r_text=js2py.eval_js('Math.random().toString()')
url="https://www.toolhelper.cn/EncodeDecode/BaseDecode?gts=1725114272000&gv=101&r_="+r_text

data={'input':'#FEyXSnnZVEl%23R8oaFUlN1Ifa1T1MCutNVmtLlb&base=64','encoding':'UTF-8','encodingTable':'ABCD*EFGHIJKLMNOPQRSTUVWX#YZabcdefghijklmnopqrstuvwxyz1234567890'}
reques=requests.post(url,data=data)
print(url,data)
print(reques.text)




####一直提示提交数据为空,求解答!!!

最佳答案

查看完整内容

[mw_shl_code=asm,true]import random import requests r_text = str(random.random()) url="https://www.toolhelper.cn/EncodeDecode/BaseDecode?gts=1725114272000&gv=101&r_=" + r_text input = '#FEyXSnnZVEl%23R8oaFUlN1Ifa1T1MCutNVmtLlb' data={'input':input, 'base':'64','encoding':'UTF-8','encodingTable':'ABCD*EFGHIJKLMNOPQRSTUVWX#YZabcdefghijklmnopqrstuvwxyz1234567890'} response = requests.post(url, ...

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

longhengdong 发表于 2024-8-31 22:57
[Asm] 纯文本查看 复制代码
import random
import requests
r_text = str(random.random())
url="https://www.toolhelper.cn/EncodeDecode/BaseDecode?gts=1725114272000&gv=101&r_=" + r_text
input = '#FEyXSnnZVEl%23R8oaFUlN1Ifa1T1MCutNVmtLlb'
data={'input':input, 'base':'64','encoding':'UTF-8','encodingTable':'ABCD*EFGHIJKLMNOPQRSTUVWX#YZabcdefghijklmnopqrstuvwxyz1234567890'}
response = requests.post(url, data=data)
print(response.json())


这个一个图片?

"data:imag�~\x12��\x06Vs�&\x176ScB���'"
surepj 发表于 2024-9-1 08:54
[Python] 纯文本查看 复制代码
import random
import requests
r_text = str(random.random())
url="https://www.toolhelper.cn/EncodeDecode/BaseDecode?gts=1725114272000&gv=101&r_=" + r_text
data={'input':'#FEyXSnnZVEl%23R8oaFUlN1Ifa1T1MCutNVmtLlb&base=64','encoding':'UTF-8','encodingTable':'ABCD*EFGHIJKLMNOPQRSTUVWX#YZabcdefghijklmnopqrstuvwxyz1234567890'}
reques=requests.post(url,data=data)
print(url,data)
print(reques.json())


我这边的返回内容是这样,我不知道正常返回内容是什么
[Asm] 纯文本查看 复制代码
{'Total': 0, 'Data': None, 'Tag': 0, 'Message': '编码表的长度必须是 0,当前是 64', 'Description': None}
grekevin 发表于 2024-9-1 09:11
data字典中键input的值中的base=64要单独写成一个键值对儿,不能和键input的值拼接。input的值是要解码的内容
surepj 发表于 2024-9-1 09:18
[Python] 纯文本查看 复制代码
import random
import requests
r_text = str(random.random())
url="https://www.toolhelper.cn/EncodeDecode/BaseDecode?gts=1725114272000&gv=101&r_=" + r_text
data='input=CDE1EF24F3FD1919F5F1EF17CFDCDDFCD3101BE1FF17E9DBE4111BDBFEDBE8ED2F2EE9F1182EE7171C&base=16&encoding=UTF-8&encodingTable=ABCDEF1234567890'
headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}
response = requests.post(url, headers=headers, data=data)
print(response.json())


这样就正常返回了
[Asm] 纯文本查看 复制代码
{'Total': 0, 'Data': '#FEyXSnnZVEl%23R8oaFUlN1Ifa1T1MCutNVmtLlb', 'Tag': 1, 'Message': '解码完毕,原文本字节数:82,解码后字节数:41', 'Description': None}
Aircus 发表于 2024-9-1 11:15
系统学习基础知识、用专业的编辑软件、用AI都能一秒钟解决问题
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-14 11:35

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表