【发布时间】:2012-06-22 07:04:50
【问题描述】:
如何将录制的视频与消息一起发布到 Facebook 墙上,请告诉我是否有可能将视频发布到 Facebook。
【问题讨论】:
如何将录制的视频与消息一起发布到 Facebook 墙上,请告诉我是否有可能将视频发布到 Facebook。
【问题讨论】:
请查看这篇文章:How-To: Use the Graph API to Upload a Video (iOS)
- (void)fbDidLogin {
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"mov"];
NSData *videoData = [NSData dataWithContentsOfFile:filePath];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
videoData, @"video.mov",
@"video/quicktime", @"contentType",
@"Video Test Title", @"title",
@"Video Test Description", @"description",
nil];
[facebook requestWithGraphPath:@"me/videos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
}
【讨论】: