0
votes
1answer
49 views

How should a client pass a facebook access token to the server?

On every call to my REST API, I require clients to pass user's facebook access token, which authenticates the user. What's best practice for passing this token? maybe as a parameter behind the HTTP ...
0
votes
0answers
103 views

Web API Authentication using facebook access token

The idea I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
1
vote
0answers
97 views

Facebook Authentication Workflow - Which one do i choose?

Our company plans an app for Android and iOS with a server backend. Besides our own registration and login mechanism we want to implement the Facebook login to simplify the registration process. Our ...
0
votes
1answer
56 views

Get Auth Token to see public posts

I'm building an application that is like an RSS reader for public pages feeds. My problem is I don't want the user to have to login (since I have no care who they are), yet to access public feeds ...
0
votes
1answer
1k views

Where to request extended access token in Facebook App using PHP SDK

I need to get access to my user's information when they are offline and I understand that I need to use an extended access token which lasts 60 days. I have been looking at this SO post How to extend ...
0
votes
2answers
500 views

Client Side Authentication against Facebook

We have a spring web app with spring mvc controllers. It's supposed to connect to our facebook app to get an authentication token to be used for further access. The communication with our App seems to ...
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 ...
0
votes
1answer
182 views

using facebook client flow to authnticate and login on app/site

Other then the fact that when using facebook's client-flow you get an access token right away, and when using the server-flow you first get an authorization code that you have to exchange for an ...