Is it possible to post video on facebook from my server? I have a server that hosts the video files. Can I send files from my server on the wall of the user? May be FBConnect has the functionality send video with URL.
For example:
FBRequest* fbRequest = [fb getRequestWithGraphPath:@"me/home" andDelegate:nil];
TTURLRequest* request = [TTURLRequest requestWithURL: [fbRequest getConnectURL]
delegate: self];
...
[request send];
Is it right? Thanks all for reply!