Seo - How to create long lived token for facebook, Long lived access token for facebook api

How to create long lived token for facebook

Facebook Access tokens are used to post or to retrieve information from facebook pages using applications in facebook. Normally the access tokens are short lived and it will expire in an hour(60 minutes). To get Long Lived access token for facebook application the following code can be used.

https://graph.facebook.com/oauth/access_token?
grant_type=fb_exchange_token&
client_id=your-app-id&
client_secret=your-app-secret&fb_exchange_token=short-lived access-token


you will get long lived access token(for 60 days) and expiry time on executing the above code in browser. Above example will help you to create long lived access token for facebook.

The topic on Seo - How to create long lived token for facebook is posted by - Guru

Hope you have enjoyed, Seo - How to create long lived token for facebookThanks for your time

Tech Bluff