This is what I do to get the token:
Use the app-id to build this link to authorize the managing of pages https://www.facebook.com/dialog/oauth?client_id=MY_CLIENT_ID&redirect_uri=MY_SITE_URL&scope=manage_pages&response_type=token
Exchange token for perm (longer token)
https://graph.facebook.com/oauth/access_token?client_id=MY_CLIENT_ID&client_secret=MY_CLIENT_SECRET&grant_type=fb_exchange_token&fb_exchange_token=(from link1)Visit this page, find the PAGE you want to post and copy the new access_token https://graph.facebook.com/me/accounts?access_token= (from link2)
Use this last token (form link3) on my code to post to page as app
FB no longer offering unlimited offline access token and this token is supposed to expire in 60 days. Now the problem is, IT DOES NOT expires in 60 days, it expires in 4 or 5 days (don't know why), so I have to do this over and over to get the precious token. Anyone knows if there is any PHP code already done to automate this? Any other idea of doing this in a better way? Thanks.