So basically im making an app which i need to embed a custom facebook wall feed into. I just want a JSONP response... that is all.
From reading for days on access token's e.c.t. i've come to the conclusion there is no way to use the graph API without a valid access token, however i dont want to require the user to login (the target platform doesn't lend itself to easy character input, plus id have to create a custom popup keyboard and interaction JS).
So the only option i've found is to use the access token for the app i setup in facebook. However i do not want to distribute the app secret so i can use the APP_ID|APP_SECRET method i've seen method (whatever it is exactly) as that would mean bad things i presume?
So my idea is, to create a proxy script on a server, which will hold the app secret e.c.t. This script will ask FB for an access token, and pass that back to my app so my app can get the wall feed and continue to use that token for refreshing the feed.
If i open my app and get an access token, then another person opens my app and gets an access token, will my access token expire as a new one has been generated? Or can you generate as many access tokens for the same app as you like?
Or can anyone think of a better approach?
WORKFLOW
- User opens app on device (the device is a bespoke contained unit, think of a Raspberry Pi but 100x simpler, and its plugged into a tv)
- The app loads a number of feeds into area's on the page, these feeds include facebook wall feed from a specific profile.
- The app will run unattended for days/weeks/months and refresh the feeds of information periodically.
FB Access Token Workflow
Since the user cannot login, i need to provide an access token. I do not want to pass round my app secret for the sake of security. So my idea is to use a php proxy script hosted on my server to get the access tokens. Like so:
- On first load the app with run a function which does an ajax call to my php proxy script requesting a token
- My proxy script will fire off a request to facebook with my app id and secret, and get a access token back from FB
- My proxy script will then dump that access token back as a jsonp response to the app
- The app will grab the access token from the jsonp response, and store it
- The app will use the retrieved & stored token for all wall feed requests to the facebook graph api.
- If app detects its token for some reason doesn't work, it will attempt to get a new one from my token proxy script.
That is my idea for how a token proxy script could be used to give access tokens to everyone, without giving away information which would cause issues if someone looked at the app source code (which wouldn't be difficult at all). However if facebook deletes old tokens every time you request a new one, this wouldn't work. So that is the immediate question.
However if theres a better way around the issue, my ears are open. Thanks