Access Token is the last token acquired during the OAuth authentication process.

learn more… | top users | synonyms

3
votes
3answers
12k 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
7k 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: ...
3
votes
1answer
2k views

OAuth Request and Access Tokens

I want to implement oauth 1 in my website and I was just wondering if I have to change the request token once it was exchange to an access token? Thanks in advance
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
1k views

Google OAuthGetRequestToken returns “signature_invalid”

Trying for hours to get a request token using Google OAuthGetRequestToken but it always returns "signature_invalid". For a test I use the oAuth Playground to successfully request the token. Here are ...
3
votes
3answers
678 views

How to get user access_token if I have his/her oauth_token?

The situation is: we have an APP + User + BD. When user opens my APP I get from FB signed_request and user_id+oauth_token. How can I then get access_token and check/get user permissions and other ...
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()) ...
3
votes
1answer
114 views

python request with authentication (access_token)

I am trying to get an API query into python. The command line curl --header "Authorization:access_token myToken" https://website.com/id gives some json output. myToken is a hexadecimal variable ...
3
votes
3answers
902 views

The Access Token is Valid but We get OAuthException: An active access token error

We've been working on an application for about 2 months, and everything was going perfectly. we were using PHP SDK and offline mode in permissions for login But since some days ago after recent ...
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..
3
votes
2answers
799 views

Refresh access token without user intervention

I am using facebook sdk for android to fetch the FB data. The access_token that is received after successful login expires after a certain time. I want to refresh the token token in the background. ...
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
2answers
917 views

Help Refreshing Yahoo's OAuth Access Token in Ruby

I'm at the point of involuntary hair loss while trying to refresh the Yahoo OAuth access token in Ruby. Using the OmniAuth and OAuth gems, I'm able to get an access token from Yahoo, however it ...
3
votes
2answers
262 views

How to convert Box's “code” to “token” after user allows access

I'm a very inexperience developer, trying to hook up Box API v2. I've successfully set up a PHP client library, which I found thanks to the link in the first paragraph on developers.box.com/auth. I've ...
3
votes
3answers
2k views

After disabling offline_access and removing the app from app settings I no longer get an extended access token

** Looks like this was a bug that Facebook has since fixed. I disabled offline_access so that I could get extended access tokens without asking for the offline_access permission. While testing, it ...
3
votes
2answers
2k views

Cannot Store Instagram API access_token with PHP

I'm working on building a small web app connecting into the instagram API. Currently using this library on GitHub which makes things a bit easier. I can connect and initially login fine, and the page ...
3
votes
2answers
968 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
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 ...
3
votes
1answer
887 views

Linkedin OAuth and Zend retrieving Acces Token returns 'Error in HTTP request'

Answer + new question I found out that the code below works just fine on a LIVE server. LinkedIN blocked all requests from localhost. That established; Does anybody know how to test an application ...
3
votes
1answer
855 views

Youtube API single-user scenario with OAuth (uploading videos)

This question has been already asked, but never answered. I want to write some php scripts that would upload video to my own YouTube account. I have already registered the application and have the ...
3
votes
1answer
1k 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 ...
3
votes
1answer
186 views

How is a Facebook access token generated?

I use the following code: $access_token = $object->getAccessToken(); This method sometimes generated an access token (118-char string) and sometimes it's a 49-character string with a pipe symbol ...
3
votes
2answers
1k views

Google API Oauth php permanent access

I am using the google Caledar API. This is what I want, once you give the app the persmission, I can always use the app, without the need of giving access everyday. I keep hearing that I need to save ...
3
votes
2answers
417 views

Handling expired access tokens in iOS app

What are the best practices when it comes to handling expired access tokens in an iOS app? For example, the user could change their Facebook password, or they could simply remove the FB app from ...
3
votes
2answers
1k views

Extending Facebook server-side access tokens gracefully

I have an application that used to use offline_access, which obviously needs changing since that's going away. We use this permission to publish messages to the facebook wall of a user when they ...
3
votes
1answer
2k views

How do I post to Facebook user's friend's wall with publish_stream but NOT offline_access using an application access token

Documentation for publish_stream reads: "Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission, you can publish ...
3
votes
1answer
121 views

How To: Non-Facebook-Users post to Facebook page wall

I am thinking of a scenario and I need your opinions whether this is even possible. I have a normal website, on this website I have a form and by sending the form it should be also sent to one ...
3
votes
2answers
2k views

Access Google Drive Files from C# Web Application

Hi I am having some trouble accessing the Google Drive SDK, mainly the authentication steps. I have two main pages in my .Net Web app - Default.aspx.cs and WebForm1.aspx.cs. In Default.aspx I have a ...
3
votes
0answers
393 views

oauth access token validation google

How can we validate the Oauth access token being used for accessing a resource ?Here is the scenario i am facing .I am storing the long-lived access token for accessing a resource.Now it suddenly ...
3
votes
1answer
1k views

FB error:Expected 1 '.' in the input between the postcard and the payload

I have finished my app and then tried it on 3 FB accounts and it was ok, but the 4th have a permanent error (it cannot get an access token): com.restfb.exception.FacebookOAuthException: Received ...
3
votes
1answer
1k views

Twitter4J AccessToken Generation

I am trying to create instance of AccessToken but its raising exception message. I have two ways to generate the AccessToken. My workflow is that on android machine I authenticate the user using Oauth ...
3
votes
1answer
767 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 ...
3
votes
2answers
204 views

Publish on facebook fan page when the user is not logged-in

I'm using the Graph API code that uses an acces_token and an id_page with permissions to post to a fan page. It works as long as the user is logged, but when I log out the access_token expires and I ...
2
votes
1answer
2k views

Android Facebook get email address of logged in through access token

In my app, I have allowed users to signup through Facebook. When user logged in, I get access token. Now I want to get email address of the user. How to get that?
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 ...
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
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 ...
2
votes
1answer
443 views

Facebook App Login - Exchanging code for an oauth access token is working only once

I'm using the URL below to get the auth token: https://www.facebook.com/dialog/oauth?client_id=CLIENT_ID&redirect_uri=RETURN_URL&scope=manage_pages,publish_stream This page will redirect to ...
2
votes
1answer
239 views

Sharing Facebook access token between iOS and website

I have developed a PHP website where users authenticate via Facebook and I get and store their auth_token. On the other side, I have started developing an iOS app where users will be able to ...
2
votes
1answer
854 views

How to get access token from GoogleCredential?

I am trying to get an access token to use the Google Play Android Developer API, and I got this far using the Google API Java Client documentation example: HttpTransport HTTP_TRANSPORT = new ...
2
votes
3answers
877 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 ...
2
votes
1answer
919 views

How to refresh access_token in OAuth 2.0 in salesforce

I am developing a salesforce app and using OAuth 2.0 to login. I have a refresh token; how do I get a new access_token by sending a request to salesforce via OAuth 2.0 containing the refresh token for ...
2
votes
1answer
102 views

Access token in my db

so if I want to catch errors with expired access token, I have to check this out https://developers.facebook.com/blog/post/2011/05/13/how-to--handle-expired-access-tokens/ and ok, but its a lil bit ...
2
votes
1answer
576 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
2answers
788 views

FQL query using stream table doesn't accept app access token

I've searched stackoverflow all day long to find an answer without luck, so here we go. I'm trying to fetch data from the stream table like this: FQL: SELECT post_id, message, created_time FROM ...
2
votes
1answer
6k views

Facebook long-lived and short-lived access tokens, and their expirancy after offline_access removal

While reading Facebook's post regarding offline_access permission removal, I was thoroughly confused by their reference to short-lived and long-lived access tokens. This page mentioned The ...
2
votes
2answers
6k views

Retrieving facebook user wall posts through graph API

I'm currently working on a facebook app which captures wall posts for a specified user, page or group, after a user has authorized the app I quote the access_token that is returned to call the method ...
2
votes
2answers
6k views

How to post to a Facebook Page (how to get page access token + user access token)

I am trying to work out how to post to a Facebook page wall, when using my app as a different Facebook User (who is not the Page Administrator). I get a range of error messages while testing: ...
2
votes
1answer
356 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
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 ...

1 2 3 4 5 14