0
對於這個問題,我一直在絞盡腦汁,加載JavaScript SDK後,我無法對圖形API進行任何GET調用。我試圖使用/我/家,但我也嘗試/我以及用於調試目的。奇怪的是,如果我檢查用戶的登錄狀態,它會返回一個訪問令牌,我可以使用它來在地址欄中完美地檢索新聞饋送。但是,只要我使用JavaScript對Graph API進行GET調用,就會得到:使用JavaScript SDK不接受訪問令牌的圖形API
「必須使用活動訪問令牌來查詢有關當前用戶的信息。
此外,我可以使用SDK的用戶的飼料使POST調用完美罰款。最後,我已經檢查確保我具有read_stream權限。
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo($facebook_key); ?>', // App ID
channelUrl : '//'+window.location.hostname+'/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
});
// listen for and handle auth.statusChange events
FB.Event.subscribe('auth.statusChange', function(response) {
if (response.authResponse) {
// user has auth'd your app and is logged into Facebook
console.log(response);
} else {
location.href='welcome.php';
};
});
FB.getLoginStatus(function(response) {
console.log(response);
});
//get Facebook news feed
FB.api('/me/home', 'get', function(response) {
console.log(response);
});
};
// 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));
//status update function
function post (form) {
var status = form.status.value;
FB.api('/me/feed', 'post', { message: status }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Status updated');
};
});
};
哇,謝謝!我不能爲我的生活找出什麼是錯的。 – Jimbroze 2012-07-27 17:03:45