Facebook JS SDK を使用して GRAPH API に公開しています。投稿は正常に公開されますが、jQuery .error チェーンによってキャッチされる奇妙な応答オブジェクトが返されます。これが私のコードです:
var jqxhr = $.post("https://graph.facebook.com/"+sbFacebook.authentication.userID+"/feed",
{
'message' : $("#question-text").val(),
'access_token' : sbFacebook.authentication.accessToken
}).success(
function(response) {
console.log(response);
})
.error(function(response) {
alert(response);
})
応答オブジェクトは次のようになります。
http://img689.imageshack.us/img689/964/screenshotfrom201302222.png
何が起こっているのか、なぜそれが error() 関数に引っかかるのか、誰にも分かりますか?
ありがとう。