is it possible to upload a video to Facebook via the Graph API, using the Javascript SDK?
something like this...
FB.api('/me/videos', 'post', {message: "Test", source: "@http://video.link.goes/here.flv", access_token: "token"}, function(response) {
console.log(response)
});
now I know that this won't work, but is there a way to achieve something like this using the Graph API and Javascript SDK?
If not, would it be safe to use the old REST api to upload the video clip?.. since it is going to be deprecated soon.
Thanx in advance!