I want to download a video from facebook to the clients local drive. I saw a few browser plugins and Facebook apps that are able to that and I was wondering how it can be done using the GraphAPI or in any other way.
相关问题
- facebook error invalid key hash for some devices
- LoginActivty with Firebase & Facebook authenticati
- Countdown to the end of the HTML5 video
- facebook “could not retrieve data from URL”
- Python function to read video and convert to frame
相关文章
- How to create a MediaClip from RenderTargetBitmap
- Facebook login for group members
- Safari blocks play() on video despite being called
- The method FB.api will stop working when called fr
- Why MPMoviePlayerController fullscreen button icon
- React native deep linking vs Facebook SDK conflct
- UIActivity with no settings for Facebook
- Skip UIImagePickerController Preview View?
First, you get the Graph API object. If the object is
public
, it's simple, just get https://graph.facebook.com/10151651550011063. (Where the number is the object's ID, equal to the?v=OBJECTID
in the facebook video URL.)If the object is not public, you need a valid access_token, and the Graph API url becomes something like
https://graph.facebook.com/10151651550011063?access_token=DFSDSGSFDGFGDSblabla
Then, in the Graph API object, you'll find the video download link under
source
.You cannot download videos using api.
You can just get there links,likes,comments etc.
$idPage/feed?fields=message,link,created_time,type,name,id,source
source => will return url mp4 video post
Refer Below Link. Might help you
http://developers.facebook.com/docs/reference/api/video/