Facebook Graph API and video

Can I request all the videos associated with my facebook account? Therefore, I can iterate and echo them to the page. This is similar to getting the json data for an album that has all the images in this album. I used the [Facebook API for video] [1]

[1]: http://developers.facebook.com/docs/reference/api/video/ as a link.

I have work on albums and images, so when a photo is added to a photo, it updates the website. Now I want to do the same for the video.

Any ideas would be great. Thanks!

+4
source share
1 answer

The Graph API does not appear, which offers access to a list of videos. You will need to use FQL

https://developers.facebook.com/docs/reference/fql/

And request a video table

https://developers.facebook.com/docs/reference/fql/video/

For videos owned by the user. Please note that you will need to track the last time you request and limit your request to videos only using created_time after the last time you checked.

+7
source

All Articles