I am working on an application that need to login with facebook
. This is the first time when i am integrating Fb API in my application. I have start from Getting St
So after messing around with the facebook graph apis for a bit, I have found that you can get the profile pic in two ways:
Use this as the profile pic url by substituting the user id: https://graph.facebook.com/USER_ID/picture?return_ssl_resources=1
Using the access token: https://graph.facebook.com/me/picture?access_token=ACCESS_TOKEN
Hope this is helpful.