Get Long Term Access Token For Facebook Page
I'm using Jquery Facebook Wall to retrieve the latest status of a Facebook page and show it in a website. (function($) { $(document).ready(function(){ $('#facebook_wal
Solution 1:
How to generate different Tokens (App Token, User Token, Page Token, Extended User Token, Extended Page Token) is explained very well in the docs:
Here´s another link if that is not enough:
As CBroe commented, you don´t need extended Tokens client-side. For getting the feed of a Page, an App Token is good enough - but you should NEVER expose your App Secret on the client. It is called Secret for a reason. And i hope you´re not trying to use static Token like that for every user. Whatever Token you are using, don´t expose it to any other users.
You could also just use the Page Plugin: https://developers.facebook.com/docs/plugins/page-plugin (again, thanx to CBroe for pointing out that additional solution).
Post a Comment for "Get Long Term Access Token For Facebook Page"