Reading the Facebook documentation, I know that with the ‘offline_access’ permission it
“Enables your app to perform authorized requests on behalf of the user at any time”.
So, what types of requests can be made using this permission?
In my application, users can create custom images and share them with friends. But, I want to put their submissions into a moderation system. I’d like to have the user select friends to share, then after the moderator approves, post on the selected friends wall. Will ‘offline_access’ make this possible?
offline_accesspermission itself will NOT allow your app to post on behalf of the userpublish_streampermission does!offline_accesspermission if you want to publish on the user’s own wall even if he is not online (I guess Facebook check if theuser_idspecified has granted your app thepublish_streampermission and the call is issued from an allowed domain)!friend_id/feedon a later stage (the user is not online or currently logged-in to your app a.k.a no validaccess_token) then I think it’s needed to ask for theoffline_accesspermission to append the user’s storedaccess_tokenthat was retrieved earlier by your app authentication-flow.