I can get videos from the user's feed using
me/videos/uploaded
but I want only the videos that belong to a certain album.
I can get photos from the album using
{album-id}/photos
The Facebook documentation does not show any way to get the videos or other media formats that can be uploaded to the same album.
Questions:
- How can I get a list of videos from the album?
- Or how can I get the album as a field on the list of videos from the first command?
The goal is to use this list to get reactions for each video, so it would be great if the reactions could also be queried as a field of the video. However, as I have noticed that to get reactions from a photo, I need to query it again using the longhand id {user_id}_{post_id}, I am guessing I could do the same thing once I get the video ids.