kennylerma / facebook-actionscript-api

Automatically exported from code.google.com/p/facebook-actionscript-api
0 stars 0 forks source link

Upload video to wall or to videos #344

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Using library version 1.6.1 and I deal with the problem of how to upload video 
from an external file to Facebook.

Looking for a solution using google, but in vain. 

Could you please help? Thank you.

Original issue reported on code.google.com by miroslav...@gmail.com on 31 Aug 2011 at 12:29

GoogleCodeExporter commented 9 years ago
The latest api v 1.8.1 includes a method to upload videos,
var params:Object = {
  title: "video title",
  description: "video description",
  fileName: 'myVideo.mp4',
  video: REFERENCE_TO_VIDEO (FileReference or ByteArray)
};
FacebookDesktop.uploadVideo('me/videos', uploadVideoCallback, params);

Original comment by edwar...@gmail.com on 25 Oct 2011 at 9:13