因此,我编写了一个程序来使用Python发送POST请求,而在c#中尝试执行相同的操作时遇到了很多麻烦。我一直在搜寻约2个小时,但空手而归。如果有人可以帮助,将不胜感激。
url = "https://www.example.com"
headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64;
rv:63.0) Gecko/20100101 Firefox/63.0"}
data = {"example":"test", "example2":"test2", "example3":"example3"}
r = requests.post(url, json=data, headers=headers)