从重定向URL下载Json响应

时间:2018-12-06 10:46:25

标签: c# asp.net web-services jsonresponse

我想从URL“ http://somedomain.com/somepath”下载JSON响应,但是随后我被重定向到“ https://login.microsoftonline.com/”,在其中输入组织电子邮件,然后重定向到我放置的登录页面我的ID和密码,然后看到响应。 我的c#代码应该是什么,以捕获JSON响应。

我已经尝试过

var client = new WebClient { Credentials = new
NetworkCredential("username", "password") };
var response = client.DownloadString("http://somedomain.com/somepath");

但这没有帮助。 请帮忙。 预先感谢

0 个答案:

没有答案