Access Token is the last token acquired during the OAuth authentication process.
22
votes
4answers
63k views
facebook Uncaught OAuthException: An active access token must be used to query information about the current user
I've been struggling to find out what is happening with this.
My scripts were working fine for a bit and suddenly half stopped.
I'm accessing the api and am getting back an access token. With the ...
41
votes
8answers
11k views
Facebook Page Access Tokens - Do these expire?
I'm building an app that allows users to administrate their Facebook Fan Pages. This requires the following two Access Tokens:
A User Access Token
A Page Access Token
I'm quite familiar with User ...
2
votes
1answer
2k views
How to programmatically add an event to a page using Graph API?
Is it possible to programmatically add an event to a page using Facebook Graph API?
If yes, what HTTP request shall be made?
For example, Startup Weekend has events on its Facebook page.
These events ...
2
votes
1answer
576 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 ...
5
votes
1answer
2k views
gdata-java-client + oauth2 + access_token secret
I'm currently trying to use the new java client(s) and due to legacy reasons for current state of google libraries, I need to use both the gdata and the new google java client api.
Obviously I'd ...
1
vote
1answer
662 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:
...
3
votes
3answers
13k views
The user hasn't authorized the application to perform this action
I am developing a simple java program to post automatically (articles) to my facebook fun page. I have created an app and have got an access_token using url : ...
3
votes
4answers
8k views
How to get a Facebook access token on iOS
iOS beginner here. I have the following code:
[facebook authorize:nil delegate:self];
NSString *string1=[facebook accessToken];
NSLog(string1);
The log shows: ...
7
votes
2answers
3k views
fb_exchange_token for PHP only working once user removes app
For a Facebook app that I am building, I require longer time than the default 1 - 2 hours.
I don't want to use "offline_access" as it puts people off from signing up to the app and is now ...
7
votes
4answers
900 views
Is there an API equivalent of the Facebook Access Token linter/debugger?
Is there a graph API equivalent of the Facebook Access Token linter/debugger that I can call programmatically?
The linter is nice. It tells you all sorts of cool information about the token you ...
13
votes
4answers
686 views
Performing Google Federated Login/oAuth2 after initial Authentication
I am trying to support "Hybrid" Federated Login and oAuth2 (using logic from this document) for a webservice which will:
support Sign in using your Google account on my site. That is, from the ...
1
vote
4answers
13k 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 ...
4
votes
2answers
1k views
Access token immediately invalidated
for a few users (maybe not that few, considering the number of related mails I'm receiving) the access token associated with an OAUTH authorization seems to be immediately invalidated. The user is ...
3
votes
2answers
3k views
Process.Start() impersonation problem
Trying to start process with another access token, without success, it runs as the non-impersonated user.
using (WindowsIdentity identity = new WindowsIdentity(token))
using (identity.Impersonate())
...
2
votes
3answers
965 views
Do OAuth2 access tokens for a mobile app have to expire?
The accepted answer here as to why OAuth2 access tokens expire:
Many providers support bearer tokens which are very weak security-wise. By making them short-lived and requiring refresh, they limit ...
0
votes
1answer
543 views
How to check GoogleCredential if it is expired
I have initialized the GoogleCredential variable from saved-access-token and saved-refresh-token. But i don't know to check it expired or not ?
I know that GoogleCredential has a function ...
13
votes
2answers
11k views
Facebook Access Token for Pages
I have a Facebook Page that I want to get some things from it. First thing are feeds and from what I read they are public (no need for access_token). But I want to also get the events... and they ...
6
votes
5answers
20k views
How to get user access token?
I'm trying to access scores through the Facebook API to get a list of scores of my friends. When I try to access /[facebook id]/scores, I get the following error even with my app access token:
...
2
votes
1answer
1k views
Accessing Google Reader subscriptions with OAuth2 access_token
Is that possible to access Google Reader subscriptions using OAuth2 access_token? I've created Google APIs project, setting up domain and created javascript code that receives OAuth2 token. It works ...
13
votes
2answers
3k views
Google OAuth refresh token is not being received
I want to get the access token from Google. The Google API says that to get the access token, send the code and other parameters to token generating page, and the response will be a JSON Object like ...
6
votes
3answers
2k views
Shared Facebook Access Token between Website and Mobile Application
I would like a Web site (Rails 3.1 with Devise and Omniauth) and a mobile application (iOS5) to share authentication. By this I mean I would like a user to be able to SSI to the site with Facebook, or ...
7
votes
1answer
2k views
Do Google refresh token expire?
I have used the refresh token several times in just a short period for testing purposes, but I wonder that, do Google refresh token expire? Or I can call the same refresh token to get another access ...
4
votes
2answers
2k views
SINGLE SIGN ON SECURITY THREAT! FACEBOOK access_token broadcast in the open/clear
02/20/2011:
It was confirmed by Facebook today that indeed there is one call in which the access_token is broadcast in the open . . . it just happens to be one call I use to make sure that the USER ...
4
votes
5answers
24k views
Facebook access_token: how do I get it once the user accepted my app?
When a user visits my site which contains a facebook app the first time, it requires him to allow it and he gets promted to do that, then I get the code which I can convert to an access_token. So far ...
3
votes
1answer
2k views
Refresh Token for Google Api Php Client
I am using google api php client for accessing the google analytics data.. I want to get the analytics data in offline access, so I need refresh token.. Please help me to get the refresh token..
2
votes
9answers
2k views
Extend auth token without refreshing the page
Users want to use my facebook app for many hours without refreshing the browser.
But token expires in 2 hours. Now I ask users to refresh the page but that's annoying.
I don't want to ask offline ...
1
vote
2answers
1k views
How to know if Access Token expires in Google Api PHP
How will I know if my access token has expired.
I'm using try and catch
try {
$result = ...
4
votes
2answers
554 views
Unable to receive a permanent access token for my Shopify App
I'm following the Shopify instructions to get a permanent token for a particular app/shop combination (http://api.shopify.com/authentication.html).
I'm able to get the temporary token and then use a ...
3
votes
5answers
3k views
how to post to facebook page wall from .NET
I've created Facebook page.
I have no application secret and no access token.
I want to post to this page from my .NET desktop application.
How can I do it? Can anyone help please, where can I get ...
3
votes
1answer
2k views
Facebook Connect Class with Singleton : Access token issue
I have created a singleton class called "LoginFacebook" which is meant to connect user to Facebook and to perform the different request. The problem is that I get an error about the access_token. Here ...
0
votes
1answer
781 views
Storing Twitter access token using Twitterizer
I'm trying to store Twitter access token to my database for a specific user, so he doesn't need to approve the application every time he wants to post a new tweet.
I can easily get user access token ...
0
votes
2answers
2k views
Problem with access token while creating Facebook Test Users
I'm trying to create test users for my Facebook application. They announced this functionality in this blog post in November (http://developers.facebook.com/blog/post/429) and it is documented here ...
8
votes
4answers
2k views
What are the security risks in exposing facebook user access token in javascript?
Suppose that my application has an access token to some facebook user.
Is there a security risk in exposing this access token in JS Code to some other users which visit my site? If so, what can they ...
5
votes
1answer
3k views
Oauth 2.0 cannot get an access token from the signed_request 'code' value
I'm migrating to Oauth 2.0. My current site uses JS SDK, has a fb-login button, then I'm accessing Graph to get the users details.
I'm having problems getting an access token to get this data from ...
3
votes
2answers
1k views
Extending Facebook Page Access Token
i need to extend my facebook access token, I'm calling this:
https://graph.facebook.com/oauth/access_token?
client_id={MY PAGE ID}&
client_secret={THE SECRET KEY OF MY APP}&
...
3
votes
2answers
997 views
Strange Access Token returned from Facebook
I have been working on Facebook app and I have been using Facebook Graph Toolkit for months and all the while, MY CODES are working (I can get Access Token, and I can use them to retrieve Facebook ...
3
votes
1answer
798 views
Retrieving token and secret from gdata.gauth.OAuthHmacToken python object
I'm following Google's great sample code for three-legged OAuth.
Specifically, I'm looking at the python version of the code. I'm stuck between 'Upgrading to an access token' and 'Using an access ...
2
votes
2answers
450 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 ...
1
vote
1answer
2k 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:
...
0
votes
2answers
2k views
How do I get Facebook's new OAuth 2.0 access_token with JavaScript in Google Chrome Extention?
I want to create simple Google Chrome extention which would display News from Facebook.
News feed can be retrieved by calling this:https://graph.facebook.com/me/home?access_token=...
But I need ...
10
votes
3answers
7k views
OAuth: Storing Access Token and Secret
We have a number of clients that use our API to power their websites.
I have started a conversation at work about using OAuth to make authenticated API Calls.
We will have both, two and three legged ...
4
votes
2answers
2k views
Can an access token returned by Facebook to the Javascript SDK work server-side with the PHP SDK?
I'm building a website that makes use of Facebook connect. I'm authenticating users client-side with the javascript SDK and calling an AJAX method on my server every time a user logs in to check if ...
3
votes
1answer
2k views
Soundcloud (Oauth2) API getting access token fails
I'm trying to authorize users on my site based on a Soundcloud login.
It uses Oauth authentication.
The user has to click a button on my site and is redirected to the Soundcloud site, where it logs ...
2
votes
2answers
464 views
Google plus for android: Invalid Credentials
I am using the followin code to get an Access Token, after connecting to Google+, to get profile info and e-mail:
String sAccessToken = GoogleAuthUtil.getToken(this,mPlusClient.getAccountName() + "",
...
2
votes
1answer
672 views
AccountManager: invalidateAuthToken does not invalidate the token
I'm trying to get a brand new token from a Google account stored in a Android device but all that I got is the same old token that I've been caching in the last days. It seems that it's cached ...
2
votes
1answer
597 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, ...
1
vote
1answer
151 views
Designing (OAuth2) access token
We are planning to implement OAuth2 spec and are reviewing the "access token" implementation.
Looks like the specification gives a lot of freedom to implementors and we are looking
for some best ...
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
1answer
219 views
Is it a good practise to store accessToken client-side?
For a website that call a backend for each of Data through backend's API
the backend first delivers an accessToken through its authenticate handler, or the accesstoken could also be delivered with ...
1
vote
3answers
3k views
Facebook: Post on Page as Page issue (access token / php)
I'm totally frustrated with my first facebook app project. I'm having major issues with what seems to be a simple task.
I want to setup a cron job on my server (easy) that will post something smart ...


