Facebook通过oAuth验证获取json数据
首先下载facebook相关的动态库,下载文件:facebook.dll
获取授权token方法:
private string SetToken(string gettoken)//此处是你的短token,通过token获取一个两个月的长token { string ShortLivedToken = gettoken; var client = new FacebookClient(); IDictionary<string, object> result; try { result = client.Get("/oauth/access_token", new { grant_type = "fb_exchange_token", client_id = "你的id", client_secret = "你的secret", fb_exchange_token = ShortLivedToken }) as IDictionary<string, object>; } catch (Exception ex) { throw new Exception(ex.Message); } string token = result["access_token"] as string; return token; }
获取json字符串方法:
public string GetDataFromFB(string access_token) { if (!string.IsNullOrEmpty(access_token)) { try { object page = null; var client = new FacebookClient(access_token); page = client.Get("https://graph.facebook.com/v2.0/内容名/posts?limit=10&access_token=" + access_token); return page.ToString(); } catch (Exception ex) { throw ex; } } else { return "token cannot be found"; } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。