Reputation: 87
I'm using postman to query from Facebook Graph API. I'm trying next line:
https://graph.facebook.com/v2.8/me?access_token=my_access_token=<here is my user token>
and i get:
{
"error": {
"message": "Invalid OAuth access token.",
"type": "OAuthException",
"code": 190,
"fbtrace_id": "ASBwgp9xF/R"
}
}
I can't figure out alone the right syntax
the access token works at facebook graph api explorer.
Upvotes: 1
Views: 5300
Reputation: 74004
You don´t even need postman for this, just hit the URL in your browser.
This is the correct one:
https://graph.facebook.com/v2.8/me?access_token=<here is my user token>
Upvotes: 5