Retrieving photo from Facebook using passport-facebook

前端 未结 5 1903
醉梦人生
醉梦人生 2021-02-13 02:44

I am able to retrieve basic user information via passport-facebook, following the below code and saving in mongodb:

app.get(\"/auth/facebook\", passport.authenti         


        
5条回答
  •  眼角桃花
    2021-02-13 03:11

    2020 solution

    Get users accessToken from passportjs passport-facebook strategy.
    Use this token to get json with a url for an users avatar:

    https://graph.facebook.com/me/picture?access_token=${accessToken}&&redirect=false
    

提交回复
热议问题