Я отправляю токен доступа, который действителен в отладчике токенов доступа Facebook, но он по-прежнему говорит, что он не активен / является недействительным токеном доступа
Я попытался вставить токен доступа через отладчик: появился как активный
var access_token = pathname.match(/\#(?:access_token)\=([\S\s]*?)\&/)[1];
$.ajax({
url: "https://graph.facebook.com/me?name?access_token=" + access_token,
type: 'GET',
success: function(response) {
console.log(response)
//Would want to do stuff with the Return data
},
error: function(response) {
$("#nameField").html("<li class='dataField' id='nameField'>The response could not locate the data source</li>")
}
});
Я бы хотел, чтобы он возвращал данные JSON / одну запись JSON. Заканчивается показом:
{
"error": {
"message": "An active access token must be used to query information about the current user.",
"type": "OAuthException",
"code": 2500,
"fbtrace_id": "BdmIzcoyALS"
}
}