1

是否可以使用 ShareKit 的一些分支将视频发布到 Facebook?我不想自己搞乱整个 Facebook 图形 API,但希望能够发布视频。

4

2 回答 2

1

ShareKit 2.0 repo中有一个针对某些服务(包括 Facebook)的视频共享的拉取请求。它还没有合并,因为有一些问题没有解决,最严重的一个是如果你分享大视频,它会耗尽设备的内存。

但这对你来说可能是一个好的开始。

于 2012-04-30T09:03:54.163 回答
0

我建议不要使用sharekit,而是为此使用FBGraphAPI ...

以下是以下步骤,您可以在 Facebook 上发布视频。

在 .h 文件中

#import "FbGraph.h"
#import "FbGraphFile.h"
#import "JSON.h"
#import <MobileCoreServices/MobileCoreServices.h>

@interface ViewController : UIViewController
{
    FbGraph                 *FB_Graph;
    FbGraphResponse         *FB_Graph_Response;
    FbGraphFile             *FB_Graph_File;
}

-(IBAction)btnShareVideoPress:(id)sender;

@end

在 .m 文件中调用此方法.....

- (void)viewDidAppear:(BOOL)animated
{
   [super viewDidAppear:animated];

  NSString *ClientID = @"197556430726736";

  FB_Graph = [[FbGraph alloc]initWithFbClientID:ClientID];

  [FB_Graph authenticateUserWithCallbackObject:self      andSelector:@selector(fbGraphCallback:) andExtendedPermissions:@"user_photos,user_videos,publish_stream,offline_access,user_checkins,friends_checkins"];

 }

-(IBAction)btnShareVideoPress:(id)sender
{

NSString *path = [[NSBundle mainBundle] pathForResource:@"YouTubeTest" ofType:@"m4v"]; 
NSURL *videoURL1=[NSURL fileURLWithPath:path];

NSMutableDictionary *variables = [[NSMutableDictionary alloc]init];

FB_Graph_File = [[[FbGraphFile alloc] initwithURL:videoURL1]retain];

[variables setObject:FB_Graph_File forKey:@"file"];

[variables setObject:@"Test video upload 1" forKey:@"message"];
[variables setObject:@"video" forKey:@"MediaType"];
[FB_Graph doGraphPost:@"me/videos" withPostVars:variables];

FbGraphResponse *fb_graphresponse = [FB_Graph doGraphGet:@"me/videos/uploaded" withGetVars:variables];  

NSLog(@"postPictureButtonPressed:  %@", fb_graphresponse.htmlResponse);

 }
于 2012-07-11T06:22:38.760 回答