0

I am integrating Facebook's Account Kit to my webapp.

My node.js server exchange the authorization code received by the client to an access token that is valid for 30 days.

I wonder how can I refresh this token without letting the user login again.

idoshamun
  • 1,125
  • 9
  • 21

1 Answers1

2

Calling the /me endpoint will refresh the access token.

https://developers.facebook.com/docs/accountkit/graphapi#at-validation

ethangk
  • 86
  • 2