我正在尝试将一些 python 代码转换为 C#。
python代码正在使用请求模块。
post = {'customer_fid': self.customer_fid, 'salt': self.salt, 'token': token, 'customer_facebooktoken': self.customer_facebooktoken}
request = self.session.post(self.baseurl + self.loginurl, data=post)
我在谷歌上搜索了几个帖子,但我找不到可能的回应。
我需要一种方法来向服务器询问 4 个参数并在之后获取状态码。
先感谢您。