即使我给我的应用程序拨打电话的所有权限(来自“https://developers.facebook.com/tools/explorer/”),返回的错误显示“应用程序无权进行此呼叫”以进行“不同”呼叫。我的请求在JavaScript下面
$(function () {
UnLike("598330036881973");
});
function UnLike(id) {
$.ajax({
url: 'https://graph.facebook.com/' + id + '/likes?access_token=CAACEdEose0cBAEKjZCFGXGFK1uzVRsx5RZBc8lwXZA9kgnAq8ahGBKX0oIUZB0UH20m1quLukJOFOQS6PBFzGxI43QP3zpxgGWRgtoUTZADZBnkGo0HsvRry0YLnZAbsxG30XihcVQ1OHNKflOTFOjwmgaVuQdSVZCBMPRFfxsQ4Y9evjX0TqFR7Pj3GYK9c2gX4uZBvwN0VLagZDZD',
type: 'DELETE',
success: function (data) {
alert(data);
},
error: function (xhr, ajaxOptions, thrownError) {
document.write(xhr.responseText);
}
});
}
您认为问题是什么?是不是禁止使用OpenGraph API?