标签: c# web-services api facebook-graph-api
我想提交一个get https://graph.facebook.com/oauth/access_token并将结果返回到字符串中。
你如何在c#中做到这一点?我不想要标题和其他所有东西。只是我可以用于api的字符串。
答案 0 :(得分:2)
您可能希望查看WebClient类。
WebClient
它提供了从给定URI下载数据的便捷方法,例如DownloadString(URI)。
DownloadString(URI)