Tagged Questions
1
vote
0answers
49 views
Facebook Login using Javascript SDK does not give extended access token
So, Facebook's documentation regarding access tokens says:
Apps using the Facebook SDKs for Javascript, Android and iOS, desktop apps or apps using the server-side login flow automatically ...
1
vote
0answers
46 views
Getting Generic Access Token, Invalid callback
I am trying to get a generic facebook access token. All the tutorials I read recommend using the call below.
https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID&
...
0
votes
0answers
152 views
Facebook javascript sdk An active access token must be used to query information about the current user
In my code I have
FB.api('/me/friends', function(response) {
if(response.data) {
//TODO : what to do if no. of friends is more than 5000 (pagination by fb)
...
0
votes
0answers
262 views
Generate long lived “User” access token from access token generated from Graph API Explorer. Not the app access token
My objective is to fetch public data from user timeline like statuses, feeds, username, hometown etc. I am using desktop application in Java which sends HTTP request with access token to get the ...
2
votes
1answer
388 views
How can I pass my Facebook access token that I got in JS SDK to my PHP script?
I have a functional facebook application that use the JS SDK. I can use the JS SDK to get my users facebook ID and access token, and it seem to work fine. However, my JS script need to call some ...
3
votes
0answers
562 views
FB.login returns Invalid OAuth access token
I've been developing an app for the past few weeks and up until now there have been no issues. Just a couple days ago a strange bug has started occurring:
My application uses the PHP SDK and ...
1
vote
1answer
119 views
Which access token to use for open graph action
I've created a custom open graph action that uses the publish_actions permission.
Once the user has granted this permission, which access token do I need to use to post the open graph action? Can I ...
0
votes
1answer
103 views
Facebook scenario 5 on the Removal of offline_access permission page
I have a general Facebook development question. I'm trying to understand how scenario 5 on Facebooks Removal of offline_access page is supposed to work and what that token can be used for.
A little ...
2
votes
2answers
1k views
C# Facebook SDK extend an accesstoken to 60 days
The main question: How am I supposed to extend the 2 hour access token for the 60 day access token via the C# SDK? Can you provide a sample of just that section where the code has already been traded ...
0
votes
2answers
848 views
set user (access token) within FB.init
i want to publish story to user timeline even when they were not login with facebook. Actually I stored user access token in the database, if the user login in with email, i'll retrieve the access ...
1
vote
0answers
509 views
How to receive return extend access token by javascript
After extend, I can:
See extend access token on browser:
access_token=TOKEN&expires=EXPIRES
Error message "invalid assignment left-hand side"
How can I get token from response.
My Code:
...
1
vote
1answer
125 views
Scheduled Facebook posts using JS API
I'm trying to write a client-side JS function to send a post to a Facebook Fanpage at a specific time using FB.ui. It used to be possible with the old JS SDK. Was that changed?
Would appreciate any ...
1
vote
2answers
325 views
Will access token work when user is offline?
I have read offline-access-removal , how to handle expired tokens and How to extend access token validity since offline_access deprecation too.
They tell about deprecation of offline access_token and ...
2
votes
1answer
2k views
Facebook Javascript SDK extend access token get “Invalid OAuth access token” - 190 - “OAuthException”
I try to use javacript SDK to get access token and then extend that access token for 60 day. I got reponse error like this from response: Object { message="Invalid OAuth access token.", ...
0
votes
1answer
279 views
How to share with access token?
I have write this code but it does work only if I am already logged in facebook, otherwise appears a popup window that require me email and password to login in facebook.
This is the code:
...
1
vote
1answer
223 views
New offline_access token implementation Facebook App with javascript
I have been working with Facebook OAuth 2.0 using JavaScript SDK. I saw that Facebook has recently changed the "infinite" expiration time access token feature and now one has gets an Access token for ...