Access Token is the last token acquired during the OAuth authentication process.
2
votes
2answers
3k views
Facebook SDK getAccessToken() problems
I have been having some trouble with the facebook SDK, specifically retrieving an access token. The App is set up on Facebook correctly and has been given permission. As far as I can tell, the code is ...
2
votes
1answer
394 views
When do I need to use the access token stored in the database?
When do I need to use the access token stored in my database?
This access token is a user access token.
It seems like the PHP SDK does a pretty good job of getting an access token on it's own. ...
2
votes
1answer
461 views
facebook app, friend data access token does not work
A user successfully logs into the facebook app. However the app is not able to pull up the user's friend information. It can only return one friend's information who previously permitted the app to ...
2
votes
2answers
455 views
Do old Facebook offline_access tokens keep working with offline_access deprecated?
I have stored access tokens with offline_access from users of my application. I prepared it to get and extend tokens for 60 days to have my app working with offline_access deprecation. But I need to ...
2
votes
1answer
164 views
Via OAuth - should 3:rd party apps be able to retain multiple access tokens per resource owner?
In the API we're developing, the access tokens are unique. With that I mean that there can only be one access token per application and user.
The consequence of this is that if a user authenticates ...
2
votes
1answer
369 views
Handling Facebook access token in Facebook SDK 3.2
How do i handle the Facebook SDK 3.2 for iOS?. And also How do i use the Facebook Access Token in this?.
Thanks in advance.
2
votes
1answer
829 views
iOS 6 get Facebook access token with device account
The application I'm working on supports both iOS 5 and 6.
For iOS 5 I get an access token by using the FBSession object. The same thing works for iOS 6 but doesn't let me use the ACAccount that is ...
2
votes
1answer
251 views
Updating the expiriring access_tokens using cron
I'm looking into automatically renewing Facebook access_tokens for all my users from a cron job before they are about to expire and as part of this I've been reading through the following link ...
2
votes
1answer
565 views
How would offline_access work after deprecation after May 1st?
I did some test, the result I found contradicts Facebook's documentation. https://developers.facebook.com/roadmap/offline-access-removal/
If we enable the "Deprecate offline access:" and ask for ...
2
votes
2answers
309 views
Issue with Requesting OAuth Access Token
I'm working on building a library for a client to integrate with LinkedIn's API and am currently working on the OAuth implementation. I am able to request the initial token's no problem and have the ...
2
votes
1answer
817 views
Getting Facebook page events purely via JavaScript SDK for all users, including those not logged in to Facebook
I'm working on including a list of events posted to a Facebook Page on my website. The catch is that I'm trying to find a purely client-side JavaScript way of doing it. I am unable to use PHP. I ...
2
votes
1answer
626 views
Extending existing offline access_tokens
i have to extend the offline access token of all users stored in my database
here i found the method
https://developers.facebook.com/docs/offline-access-deprecation/
but when i used this call
...
2
votes
2answers
407 views
iframe tab facebook app displays on a new page instead of within the iframe/facebook-canvas
I am using Python and a javascript or php sdk.
To obtain the access_token - I follow the steps indicated on the docs page (https://developers.facebook.com/docs/authentication/). I pass the redirect ...
2
votes
1answer
560 views
OAuth token security
As far as I know, the OAuth standard is very lax on how OAuth really should behave, but...
I store OAuth access tokens for various OAuth services in a database. If these tokens were compromised, ...
2
votes
0answers
14 views
FOSOAuthServerBundle access_token life time
If someone are looking how to change access_token life time (expires_in) for FOSOAuthServerBundle then here is how to do it:
fos_oauth_server:
service:
user_provider: ...
2
votes
2answers
308 views
If i enable migrations “July 2013 Breaking Changes” of my app, then search user by email wouldn't work
I'm using the search graph API to search for users by email. Here's an example of how I do that:
GET ...
2
votes
1answer
123 views
Stateless Spring Security usage
I need your help with stateless Spring Security. I wrote service that authorize user, my security.xml:
<http use-expressions="true" create-session="stateless" ...
2
votes
1answer
148 views
Devise token_authenticatable without session cookies
I'm using Rails 3 and I've succesfully built a web api. For a bunch of controllers login is required so i decided to use Devise and token_authenticable. It IS working but not quite as I was expecting: ...
2
votes
0answers
90 views
using omniauth for facebook login with only access token
I am creating an api in rails for mobile application. Now the user will login using facebook and i will recieve the access token post facebook authentication. I have to take this access token and ...
2
votes
1answer
451 views
Getting (OAuthException - #2500) An active access token must be used to query information about the current user
I am getting the following error:
(OAuthException - #2500) An active access token must be used to query information about the current user.
Using V6 of the Facebook SDK in C#.
Below is the code ...
2
votes
0answers
436 views
Facebook API unsupported get request
I am posting Open Graph actions using the PHP SDK. Randomly about 1 in 20 of these actions turns up on the wall as normal but I am unable to access or delete it through the API. Trying to do so errors ...
2
votes
0answers
41 views
what token should be used for publishing news feed to app user's wall
I have a question about which access token should be used for publishing news feed to user's wall via PHP SDK.
Basically, there is a delay, let say 7 days, between user connected to the app and the ...
2
votes
1answer
299 views
Twitter REST Api 1.1 POST friendships/create
I was trying to implement Twitter friendships/create by using REST Api 1.1 with PHP. But no matter how I tried it returns with
stdClass Object
(
[errors] => Array
(
[0] ...
2
votes
1answer
179 views
oauth/token returns empty body
I am encountering a problem getting the access_token in client application using oauth.
The returned response has empty body though in API I can see the response is not empty.
tokenresponse = {
...
2
votes
0answers
69 views
Search for places with an App Access Token suddenly stopped working
i am calling the graph API with an App Access token (grant_type=client_credentials) to search for places on facebook. Quering for
...
2
votes
1answer
191 views
(JAVA) Google API analytics - unable to obtain new “access token” using “refresh token”
I want to obtain a new "access token" based on the "refresh token" saved in database.
Here is the code I wrote:
GoogleCredential.Builder credentialBuilder = new GoogleCredential.Builder()
...
2
votes
0answers
54 views
Facebook Constantly Switches Between Two Access-Tokens
I'm facing a somewhat weird situation. In our application we removed the use of the offline_access-scope and implemented their new logic to get a new token. Therefore, we use the following ...
2
votes
1answer
138 views
Page access tokens from web app
I'm writing a facebook web app with Graph API for publishing on a page wall automatically. I'm the page administrator and I've set up the app permissions for requiring manage_pages, offline_access, ...
2
votes
2answers
184 views
Refreshing an expired access token for specific user
The application which I am building maps a user_id to multiple facebook accounts. I have access tokens for each of these mapped accounts and everything works nicely. There is a problem, though, when ...
2
votes
0answers
94 views
with offline_access migration enabled, trying to extend the access tokens to 60 days seems to fail ~70% of the time. Why would that happen?
I'm extending client-side access tokens as documented here: https://developers.facebook.com/roadmap/offline-access-removal/#extend_token
But I've noticed that very frequently the request returns the ...
2
votes
0answers
781 views
Facebook Client-side authentication and offline_access deprecation
Before you start yelling at me, I know many users already asked for something like this, but I read all of them and couldn't find any reply related to my specific case: I eventually managed to get ...
2
votes
0answers
178 views
View Page that is Age Restricted
I am creating a Facebook Gallery on our bar's website that pulls our albums from our Facebook Business Page. When I put an age restriction on the Fan page I am unable to view the albums. How can I ...
2
votes
0answers
2k views
Facebook iOS SDK - extend expired token
I am having hard time trying to get the new extending-an-expired-token flow work.
When first-time user sign in the app over Facebook SSO, the token returned by Facebook usually expires in roughly 2 ...
2
votes
0answers
310 views
Android - issue with facebook logout
Ive got an android app, it connect with facebook and ask for "offline access", so the access token should be always the same, but then I logout (facebook.logout()) and login again facebook is giving ...
2
votes
1answer
411 views
Reliability of Facebook Graph error messages
Is there a reliable way of getting access token errors from the facebook platform?
Our iOS/Android App needs to save the users Facebook session. This is fine except that authentication errors we get ...
2
votes
1answer
875 views
How to get an ACCESS_TOKEN from the new Add to Timeline Auth dialog
I currently have the following situation. On my website, the user can access his settings page. This page features a tab called 'Facebook'. On this page, I have the following code that lets the user ...
2
votes
1answer
544 views
Obtaining an Access_token to read Page Insights
I've been working on using python to get access to Facebook insights information. I was able to get public information (e.g. 'likes' from cocacola's page) in addition to app insights for apps that I ...
2
votes
1answer
2k views
Problem retrieving an access token with code returned
I am having a problem retrieving the user's access token after he/she has authorized my Facebook application to access their information and post for them, etc... Facebook returns a code query string ...
1
vote
4answers
12k views
PHP SDK: How do I capture the access token after user auths app?
This is for a canvas app on the Facebook Platform using the new(est) Facebook PHP SDK.
We are using the PHP example from the Facebook tutorial ...
1
vote
2answers
1k views
Anyone Know the Lifespan of a Facebook API Access Token?
what is the lifespan of an access token in the FB oAuth API?
Not the extended offline permissioning, just a normal access token?
1
vote
1answer
291 views
OAuth 2.0 - When should an access token be renewed with refresh token?
I'm currently using OAuth 2.0 to access the Google API. From my understanding, I should use the returned refresh token to renew the access token. Should this be refreshed before it expires or should ...
1
vote
1answer
1k views
Facebook Application Auth Token Get Error
I am trying to request the authtoken for my app via the Facebook API Graph Exlorer following the facebooks instructions. When I do a get call with a URL with the following form:
...
1
vote
2answers
2k views
How to delete app requests with Javascript SDK
I've got the following Javascript code:
function RemoveRequest( requestToRemove )
{
FB.api( requestToRemove, 'delete', function(response) {
...
1
vote
1answer
603 views
How to create a non-expiring Facebook page token as described in the Removal of offline_access permission doc
I am trying to create a non-expiring page token that I can use on my site to make posts on my Facebook page. According to scenario 5 in this document I should be able to do this:
...
1
vote
4answers
4k views
Facebook access_token problem
I use a request dialog in my app where the user can send requests to their friends. Once the user sends the request i redirect the app to a page where it posts on the users page. I use the below code ...
1
vote
1answer
323 views
Sign in via Google Plus APIs
I am trying to collect data of my user while he signs up for my website.
I am asking for the following scopes while making a request
<span id="signinButton">
<span
class="g-signin"
...
1
vote
2answers
507 views
retreiving user information with access token - facebook developer
im developing a facebook app and I want to retreive some of the user's information o a side server while they are using the app.
In order to make that possible, I store the users accestoken on my db ...
1
vote
1answer
1k views
Display Facebook News Feed in iPhone app for a Facebook Business Page
BACKGROUND:
There is a publicly available Facebook business page, I can see the entire page and the Facebook news feed in my web browser, without actually being logged into my Facebook account. So ...
1
vote
2answers
88 views
Adding admin to fanpage
I have an app with advanced permission for fanpages.
I was wondering, is there any way possible to add an admin to a fanpage through any API?
1
vote
2answers
368 views
Permanent read access to a user's Facebook stream since offline_access was deprecated?
I had an idea for an app that would periodically access peoples' Facebook data. However, Facebook just deprecated the offline_access permission which prevents tokens expiring in a set time period.
Is ...
