How do I upload a video from a server to Facebook, with javascript/jquery/ajax, but without using php?
I tried calling:
FB.api('/me/videos', 'POST', { source: url, name: title }, iCallback);
but this is returning an error: "(#353) Missing video file". I checked the url, and it's valid and directs to a valid video file on the server.
Thanks for your help!