Main Question: (since offline_access permission) is deprecating; how long will an access token created by hitting the below url with app's ID and secret last? https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=XXXX&client_secret=YYYY last? It seems a simple question but I have not been able to find a definitive answer here or on developers.facebook.com
Secondary Question I want to pull my facebook pages's feed into my website (either via jquery plugin or rolling me own), but both using something like:
https://graph.facebook.com/100002282383158/feed?method=GET&metadata=true&format=json&callback=___GraphExplorerAsyncCallback___&access_token=XXX
basically I'm using an appID and secret created via an fb app that I made just so I can generate an access token and pull my feed into my website (see first question), without requiering the user to authenticate with fb. Is there a better way to do this than making the above call and creating an app to get a token? (the web server that I have to use can not use php)
notes: in this post in the comments it says "Offline access has now been deprecated, but you are allowed to extend an access token to last for 60 days." but I have not found any doc to back that up or a way for me to set that time; and i'd hate to go live wondering if my token will expire at some unknown time Facebook Page Access Tokens - Do these expire?