我需要知道如何在 C# 中将其作为发布数据发送。
以下是在 python 中的,我需要将其转换为 C# 代码并将其作为 webrequests 发送。
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)
这应该通过 webrequests 或 httpclient 来完成。但我不知道该怎么做。请帮我。
提前致谢。