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";
            }
        }

 

转载于:https://www.cnblogs.com/zxiong/p/4107961.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值