0

I want to write a Facebook Application that checks a user defined RSS feed periodically and import new items to users'/pages' wall(I know, there are similar apps). But I couldn't find an useful manual for authenticating for background processes. I mean, you know, I must publish streams when user not online. I know, a permission named "offline_access" for that, but I'm confused about that; do I have that I must store the access token key that I took while the user is online? Or are there any other method to using access token when user is offline?

Murat Çorlu
  • 8,207
  • 5
  • 53
  • 78

1 Answers1

0

Facebook API access tokens that taken with offline_access are long-lived tokens.(It's expires in 60 days). So yes, we must store access token key in our database but Facebook user must give access again in 60 days.

https://developers.facebook.com/roadmap/offline-access-removal/

Murat Çorlu
  • 8,207
  • 5
  • 53
  • 78
  • I tried to use extended access token for offline access, but it's only work for 60 minutes. – Ari Jan 11 '14 at 23:23