I have an application that runs on a server. There is a background task on this server that will publish a status update on several social networks (Facebook, Twitter, G +). It must be fully server-side.
In the Twitter API, I can use the OAuth header to authorize the API request. The OAuth HTTP Header uses the consumer key, consumer secret, access token, and token access key to create the header. With this, I can send / update / delete tweets without user interaction.
How can I do this for facebook? I found a solution for getting long-term access_flow (2 months), but we donβt want to regenerate access_token every 60 days. We want to use it to manage our Facebook page - updating the publication status, but completely server-side.
Can I do this for Facebook? Thanks for answers. PS: I searched stackoverflow a hundred times, but without solving my problem.
Thanks.
source share