“An access token is required to request this resource” while accessing an album / photo with Facebook php sdk

后端 未结 6 845
执念已碎
执念已碎 2020-12-29 02:08

I am using the php sdk to access a user\'s albums and photos in a website. I am able to login and also able to retrieve all the info about the albums and photos.

How

6条回答
  •  孤城傲影
    2020-12-29 02:27

    There are 3 things you need.

    1. You need to oAuth with the owner of those photos. (with the 'user_photos' extended permission)

    2. You need the access token (which you get returned in the URL box after the oAuth is done.)

    3. When those are complete you can then access the photos like so https://graph.facebook.com/me?access_token=ACCESS_TOKEN

    You can find all of the information in more detail here: http://developers.facebook.com/docs/authentication

提交回复
热议问题