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

learn more… | top users | synonyms

0
votes
0answers
18 views

Facebook application access token

I need help.I have problem with my javascript.It seems that variable x does not take the value from the response and keeps says undefined.Here is my code ` var x; window.fbAsyncInit = function() ...
2
votes
0answers
12 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: ...
0
votes
0answers
3 views

X-PP-AUTHORIZATION for third Party Expresscheckout does not work for some

I am having this issue using performing expresscheckout on behalf of our customer for a month now. I do have the "Access Token" and "Secret Token" generated using PermissionService API. Therefore, I ...
1
vote
0answers
16 views

Facebook AccessToken returns invalid redirect_uri error

After my application redirects to Facebook and gets the CODE, when I send httprequest back to get the access token, I get error : { "message": "Invalid redirect_uri: Given URL is not allowed by ...
1
vote
1answer
28 views

How to design oauth 2.0 access token field in Sql?

I am designing the database for my own OAuth service. My current solution is to have an 512-bit long access token and save it as binary data in sql. Is this a good practice? Do I need varchar type ...
0
votes
0answers
46 views

Valid access token not work in Graph API Explorer

The Facebook Access Token debugger say that my access token is valid: Issued 1368430222 (24 minutes ago) Expires 1373614222 (in about 2 months) Valid True But when I test it in the Graph API ...
0
votes
0answers
27 views

ios - How do I get token from Google,Yahoo?

I'm new to iPhone development,I'm trying to get access token from Google,I load the data(Google,Yahoo,Facebook) from JSON url in UITableview,once I click the Google it redirects to UIWebview(Gmail ...
0
votes
1answer
35 views

extract facebook data from access token

i'm trying to use this site https://www.oneall.com/ to add social login to a test site after setting up the code and the login i still don't know how to extract user data from access token here's the ...
0
votes
1answer
50 views

Facebook app error with access token

I have flash game for Facebook. Yesterday It worked correct, successfully inserted data to database, but now when I try to start my app/game I got error: Fatal error: Uncaught OAuthException: An ...
0
votes
2answers
40 views

Access public pictures without an access token?

I created a php module for Drupal that pulls a public album and display pictures inside it. I discovered that the module suddenly stopped working. I googled and looks like even a public album requires ...
0
votes
1answer
62 views

Facebook oAuth with Phonegap 2.3.0 not returning token as url param at success url

I am trying to integrate Facebook oAuth with my Phonegap 2.3.0 application so that I can post to the user's wall. I am able to use the library from here: Phonegap oauth with some modifications to ...
0
votes
1answer
81 views

Access token exception instagram with working access token?

I'm having trouble with an HTTP Request from my scala code. https://api.instagram.com/v1/tags/training?access_token=workingaccesstoken gives ...
0
votes
0answers
20 views

ios - How to append javascript in html content?

I'm trying to get access token from Google,Yahoo.When I logged in Gmail,I'm getting Html content which contains all the details in value that is token here.I'm following this link ...
0
votes
1answer
44 views

ios - How to get access token?

I'm following this link to get access token,but some leaking in below code particularly in url and content. -(void)connectionDidFinishLoading:(NSURLConnection *)connection { if(_data) { ...
0
votes
1answer
27 views

Social framework auto-appending access key

I am attempting to retrieve a list of friends with specific fields using the iOS 6 Social Framework. I am using the URL: NSString *username = [[NSUserDefaults standardUserDefaults] ...
0
votes
0answers
36 views

SoundCloud API & Desktop Application - How Do You Use the Access Token?

I have followed the instructions posted here to connect a user to my application, eventually receiving the "access token" string by parsing the URL through a popped-up juce::WebBrowserComponent. ...
0
votes
0answers
59 views

How to handle Facebook expired/invalid access token C#?

in my Facebook app I've stored users' access token in my data base whenever i want to make a post in my users' walls (face book users who granted my app a permission to publish in their wall) i loop ...
-2
votes
0answers
58 views

ios - How to give URL in NSURLConnection delegate? [closed]

Here how to declare the URL instead of initWithString,I have to use some other method.If you have any clarification.Please go through this link ...
0
votes
1answer
28 views

Facebook App: How to Remove (or) make expired the previous used Access Tokens?

I accidentally gave/passed the Access Token (The one i generated from Graph API Explorer) to my friend. Because while i was doing App Development for my Demo-App, i accidentally passed the testing ...
-3
votes
2answers
43 views

How to load UIWebview content without using initWithString method? [closed]

I just want to load the content in UIWebview but I don't want to use initWithString. Any method is there? - (void)connectionDidFinishLoading:(NSURLConnection *)connection { if(_data) { ...
0
votes
1answer
47 views

ios - How to invoke javascript in ios?

I want to check the JSON URL after logged into Gmail or Yahoo,but the condition fails,i'm trying the below code. How to declare that javascript,am I declaring the correct way? I'm following this ...
2
votes
2answers
302 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 ...
0
votes
0answers
65 views

ios - How to load UIWebview content?

I'm new to iPhone development,i just want to get access token,i'm following this link http://www.stevesaxon.me/posts/2011/window-external-notify-in-ios-uiwebview/ to get that token,but when i call ...
0
votes
1answer
55 views

Check Access Token every Request with Redis

I'm currently implementing an OAuth 2.0 Architecture for my RESTful API. With each request I set up an Authorization Bearer Token in the HTTP Header for all my clients to make Authorized Requests. ...
0
votes
1answer
30 views

ios - How to handle NSURLConnectionDelegate?

I'm trying to get token with the help of given link. Please go through this link http://www.stevesaxon.me/posts/2011/window-external-notify-in-ios-uiwebview/ What is _data here? How to declare that? ...
0
votes
1answer
15 views

ios - WACloudAccessControlClient may not respond to setToken?

I'm trying to get token,but getting warning message like 'WACloudAccessControlClient, may not respond to setToken - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest ...
0
votes
1answer
125 views

How do I get the feed of a public Facebook page in an iOS app without prompting the user for Facebook permissions?

I'm trying to get the feed of a public Facebook page using the Graph API and I can't figure out how to do so without prompting the user for permissions. The following code works, but prompts the user ...
-3
votes
3answers
85 views

ios - How to load javascript function into UIWebview?

I'm building an app using OpenID, now I want to get access token, please go through this given link http://www.stevesaxon.me/posts/2011//window-external-notify-in-ios-uiwebview In that link ...
0
votes
2answers
65 views

Amazon AWS Request Token From Secure Token Service

I'm trying to sign an amazon sts token request to get temporary access to my S3 account. I've been following the instructions for Signature Version 4 with no luck. I am constantly getting this ...
-3
votes
0answers
39 views

ios - How to get access token from Google,Yahoo,Windows Live,Facebook sdk 3.2? [closed]

I'm already getting the gmail,yahoo,facebook login in UIWebview. Once the login is completed, it shows an empty. Although I could not yet figure out how to get the access token from this. Any ideas? ...
0
votes
0answers
21 views

token passing in C# to pass authentication credentials

I am creating an application in Visual studio 2005 using C# windows forms. In the process I have to download multiple files at a time and each file requires authentication. So when I download a file ...
1
vote
1answer
42 views

How to get security token and then navigate to our app?

I'm building an app using OpenID authentication,I loaded the data(Google,Yahoo,Facebook) in UITableview from URL,once i click that it redirects to the login page in UIWebview. When I login Google or ...
0
votes
0answers
26 views

problems getting the authtoken from facebook

i have build one page with this code to storage the tokens that i get from my app users: If System.Web.HttpContext.Current.Request("code") Is Nothing Then ...
1
vote
1answer
36 views

Removing Administrator Privilages from Process

With the help of this great MSDN article, my first idea was to simply check if the process is using an elevated Administrator group, and using AdjustTokenGroups() I would set the Administrator group ...
0
votes
0answers
48 views

Securing WebAPI webservice with Custom STS based on WIF

I have a Custom STS up and running perfectly, I need a webapi service to be authenticated using my STS. I am unable to figure out how to do it. I want to secure the webapi service and use the ...
0
votes
1answer
67 views

Spring oauth2 validate token request

Does oauth2RestTemplate or access token providers support validate token request? Here is the flow: Mobile/Web-App authenticated from third party Authentication server and obtains Access-Token. ...
0
votes
1answer
33 views

Are OAuth2 bearer tokens signed?

It may be a stupid or naive question, but: Are OAuth2 bearer tokens signed? To put it in other words: Is the consumer able to verify whether the bearer token was issued by a specific authorization ...
0
votes
0answers
42 views

Facebook Graph API - post comment as user

I want to send comments to wall posts of a fanpage. $facebook->api('/post_id/comments', 'POST', array('access_token' => $auth['access_token'], 'message' => 'my message')); This is working, ...
0
votes
1answer
52 views

Google OAuth 2.0 inconsistent token type?

Google says in its own OAuth 2.0 specs in accordance with the OAuth 2.0 draft that the authorization header should be: Authorization: Bearer {access_token} And indeed it works with the G+ API. But ...
1
vote
1answer
123 views

Client Secret vs Access Token Rails Instagram API

I'm learning Ruby on Rails and I'm trying to implement Instagram API. I'm reading through documentation https://github.com/Instagram/instagram-ruby-gem and in the configuration portion it says to put ...
0
votes
1answer
60 views

Facebook PHP SDK - OAuthException - Active token is valid in http request but in code not

I am getting this error when i open my app canvas. I already found out in which line the error comes up. User is logged in <-(echo by php) Short Token is: XXXTOKENXXX <-(echo by php) Fatal ...
0
votes
0answers
29 views

Best practice for store Access Token in a OAuth Web Client

Where an Web OAuth client application should store the Access Token? Considering that we have several ways to store it (Cookies, Session ...), what is the best practice?
0
votes
0answers
137 views

facebook access token expired

Based on facebook instructions https://developers.facebook.com/roadmap/offline-access-removal/ (Scenario 4) i am using the following URL ...
0
votes
1answer
29 views

Why won't the Saml2SecurityHandler create a token using ReadToken from a string I've just created using WriteToken?

So I need to serialize a token to send to a service via a queue + NetMessageBinding in Azure. The token comes from ACS and after some jiggery pokery I have the Saml2SecurityToken and I can write it ...
0
votes
1answer
88 views

Access token for a simple FQL retrieving the number of status for a page

I'm doing a really simple PHP app using the latest Facebook PHP SDK which aims to display the number of status a page of mine has. To do so I created an app to have the app id and the app secret but ...
0
votes
1answer
21 views

disqus where to grab access_token

Based on this link "Authenticating as the Account Owner Many applications simply want to perform actions on behalf of the account owner. You can do this using the standard OAuth flow, except that you ...
0
votes
1answer
48 views

Google App Engine : Common way to implement sessioned API/ajax requests?

I don't even understand how user session information is persisted across regular HTTP/S GET calls, and I mean the details, like line by line of code and data in the server/client exchanges. I ...
0
votes
0answers
39 views

Collecting client-specific data from OAuth2.0 Access token

Is there a way to collect useful, client-specifc information from API users without using an access_token with stored data about the client? My use case: I have implemented an OAuth2.0 Resource ...
0
votes
0answers
64 views

Error while authenticating google mail using oauth (vb.net)

i am using this to get my access token *note: it is https not ttps, cause i cant post more 2 links in a question. ...
2
votes
2answers
212 views

Cannot get oAuth2 Access Token for Google Analytics API

I am using Rails + Garb Gem (Sija Branch) + omniauth-google-oauth2 Gem and I can successfully authenticate with the Google Analytics API and extract data that our app is generating when using a user ...

1 2 3 4 5 14