我需要一些帮助才能从 facebook 获取一些 JSON,基本上我需要做的就是获取状态文本并将其发布到网站。
我正在使用下面的方法,但是使用此方法的 access_tokens 每小时都会过期。
$.getJSON('https://graph.facebook.com/SOME_ID?fields=statuses.limit(10).fields(message)&access_token=SOME_ACCESS_TOKEN', function(data) {});
请注意,我从 facebook graph API explorer 获得了上面的 URL。
还有其他方法可以实现我想要做的事情吗?
更新:
我使用了 FB.api,但我不确定我是否做得正确,因为它向我发送了此错误“请求此资源需要访问令牌”。
window.fbAsyncInit = function() {
FB.init({
appId : 'My_app_id', // App ID
channelUrl : '//myHost.com/facebook/channel.php', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.api('USER_ID?fields=statuses.fields(message)', function(response) {
console.log(response);
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
请注意,我用正确的值替换了(my_app_id、myHost.com 和 USER_ID)。
提前致谢。