gpt4 book ai didi

python - 如何使用竖线分隔符在 Python 的 post 请求中发送查询字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 01:22:21 25 4
gpt4 key购买 nike

ASP页面的查询字符串由url?string=username|password发送其中 string=username|password 是 urlencoded。我对在 Python Requests 模块中实现这一点感到很困惑。这是网址:

example.asp?options=2

带有参数string=username|password

基本上,POST 期间 api 的“安全”特性是参数不应显示在 url 中。

最佳答案

请求自动 urlencoded POST 数据:只需在字典中提供它。正确的代码是这样的:

>>> data = {'string': username + '|' + password}
>>> r = requests.post(url, data=data)

关于python - 如何使用竖线分隔符在 Python 的 post 请求中发送查询字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20422842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com