发送帖子数据并获取状态代码

时间:2013-04-08 11:55:48

标签: c#

我需要知道如何在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来完成。但我不知道该怎么做。请帮帮我。

提前致谢。

1 个答案:

答案 0 :(得分:0)

Have a look on this or this

or this

希望这会对你有所帮助。