facebook api获得长期令牌

时间:2015-09-21 13:49:16

标签: javascript facebook facebook-graph-api

我知道建议不要这样做,但是我想从客户端使用javascript获取长期访问令牌,我有用户ID,秘密应用程序和短期访问令牌,所以这应该很简单,但我可以&似乎做对了。
为了论证,让我们说那个

Secret app ID =1;
user-ID = 2;
short term token = 3;  

api电话是

GET /oauth/access_token?  
    grant_type=fb_exchange_token&           
    client_id={app-id}&
    client_secret={app-secret}&
    fb_exchange_token={short-lived-token} 

要使其与javascript api一起使用,它应该看起来像这样..

FB.api(GET /oauth/access_token?  
    grant_type=fb_exchange_token&           
    client_id={app-id}&
    client_secret={app-secret}&
    fb_exchange_token={short-lived-token}); 

现在我想存储它返回的数组,所以我应该将它改为

 var longToken= FB.api(GET /oauth/access_token?  
            grant_type=fb_exchange_token&           
            client_id={app-id}&
            client_secret={app-secret}&
            fb_exchange_token={short-lived-token}); 

现在我必须添加值...

 var longToken=FB.api(GET /oauth/access_token?  
        grant_type=fb_exchange_token&           
        client_id=2&
        client_secret=1&
        fb_exchange_token=3); 

那么我做错了什么,非常感谢?

0 个答案:

没有答案