With the REST api in the process of being deprecated, I'm trying to convert our existing application to use the facebook c# sdk.
One of the things we can currently do, is post a video by uploading it.
I've created a POST request as follows, but I'm getting a failure of 'Unsupported Post Request'.
byte[] video = File.ReadAllBytes(TESTDATA_DIR + "Snowboarding penguin.mov");
if (_FBClient != null)
{
var parameters = new Dictionary<string, object>();
parameters.Add("message", "This is a Graph API unit test message containing a video! (" + DateTime.Now.ToString() + ")");
parameters["caption"] = "This is the caption for the unit test message!";
parameters["description"] = "This is description for the unit test message!";
parameters["name"] = "This is name of the unit test message!";
parameters["req_perms"] = "publish_stream";
parameters["scope"] = "publish_stream";
var mediaObject = new FacebookMediaObject
{
FileName = "Snowboarding penguin.mov",
ContentType = "video/mov",
};
mediaObject.SetValue(video);
parameters.Add("source", mediaObject);
_FBClient.Post("me/videos", parameters);
}
I see lots of general posts about video uploading not being supported by the GRAPH API, but hopefully this has been resolved by FB now.
Can anyone steer me in the right direction for getting this request to work?
TIA