Access Token is the last token acquired during the OAuth authentication process.
0
votes
0answers
11 views
Could the access_token endpoint return a 200 on an error?
I'm reading up on the login flow and looking at the API's response of OAuth's access token endpoint:
The response you will receive from this endpoint, if successful, is
...
0
votes
1answer
7 views
How to deal with the removal of offline_access when managing a page?
Now that offline_access has been removed, I'm wondering how I should set up my app. Here's an overview of my app as I want it to work:
A first user, admin, logs in first, makes a facebook page and ...
-1
votes
0answers
22 views
What kind of cryptography should i use? [closed]
I have a trusted third part A that issues an access token (xml file) to an untrusted client C that uses this token to log into a server S and access to the authorized files.
I want only that C can't ...
1
vote
0answers
244 views
Post to my facebook page (fan site) as admin via php (fb sdk) with extended token
Could you please someone show a simple way how can I achieve the following task?
I've got a website where users can upload some kind of posts. I need a new feature: when someone publishing a post, it ...
0
votes
0answers
19 views
Twitter sign in with oAuth
I'm trying to add the feature of sign in with Twitter to my website, but I just can't make it work. I'm using the twitter4j api. In the twitter4j site they have a sample code demonstrating precisely ...
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}&
...
1
vote
0answers
8 views
Unable to obtain long-lived token
I have reported a bug about this (https://developers.facebook.com/bugs/163942813778219).
I have implemented the server-side login flow which is supposed to result a long-lived user acess_token.
I ...
0
votes
3answers
52 views
how to get Google plus access token in windows application C#.net
I am preparing a windows application in that I want to use oAuth2 to access info from google plus.
But I am getting bad request for my following code.. I am able to create app in google console and ...
0
votes
0answers
15 views
Can't retrieve access token during OAuth in shopify API
I am new to shopify app development and I am using the API. While doing the OAuth for the app I am stuck at the step where we have to retrieve the permanent access token. I have the access code from ...
0
votes
1answer
136 views
Can a facebook app get friends of an app user with app access token?
From the documentation http://developers.facebook.com/docs/reference/api/user/ it seems that to fetch user's friends one needs users valid access token.
But it appears that I can fetch the ids of ...
0
votes
0answers
19 views
Google Javascript API: What happen after access token expire?
I have a client-side web app (no backend) that uses Google Javascript API.
I have an issue regarding the access-token that I got after the login is successful.
From the callback, we can see that the ...
0
votes
2answers
88 views
How to keep user signed in once user has entered google+ account credentials in iphone app?
I have integrated Google+ iOS SDK in an iPhone application.I want to keep user signed in once user has entered account details.The problem is that if application is terminated and opened again, user ...
3
votes
2answers
302 views
How to convert Box's “code” to “token” after user allows access
I'm new at this, trying to hook up Box's API v2. I 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 read Box's ...
0
votes
0answers
76 views
Why would Facebook login not work on certain devices?
I have built in app using Corona SDK that has facebook login in it. But for some reason I have a problem with facebook login on the Galaxy S4. I press the facebook login button, it goes to Chrome and ...
0
votes
0answers
23 views
Access Token Generation From Scratch
Every search of access token generation seems to return how to do it with Facebook, Twitter, etc. But I need to create my own mechanism of how to generate an access token when a user/client obtains ...