0

こんにちは、私は自分のウォールにメッセージを投稿しようとしていますが、友人をターゲットにしています。ウォールに投稿するように@friendsname、以下のコードを使用しています

 NSMutableDictionary* params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                    @"post", @"type",
                                    urlQRCode, @"picture",
                                    [globals linktoapp], @"link",
                                    @"xsxsx", @"name",
                                    @"sxsxsxsxsx", @"caption",
                                    @"sxsxssx", @"description",
                                    messsdsage, @"message",
                                    @"friendfbuid", @"to",
                                    nil];



    [appDelegate.facebook requestWithGraphPath:@"me/feed"
                                     andParams:params1
                                 andHttpMethod:@"POST"
                                   andDelegate:self];
4

2 に答える 2

1
+(SHKItem *)image:(UIImage *)image title:(NSString *)title;


UIImage *image = [UIImage imageNamed:@"sanFran.jpg"];
SHKItem *item = [SHKItem image:image title:@"Look at this picture!"];

Doc を読み、Shared kit をダウンロードします。Hare をクリックします。http://getsharekit.com/docs/

于 2013-04-30T14:31:39.550 に答える
0
- (void) postImageToFacebook {

appDelegate = (ScorecardAppDelegate *)[[UIApplication sharedApplication] delegate];

currentAPICall = kAPIGraphUserPhotosPost;

UIImage *imgSource = {insert your image here};
NSString *strMessage = @"This is the photo caption";
NSMutableDictionary* photosParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                     imgSource,@"source",
                                     strMessage,@"message",
                                     nil];

[appDelegate.facebook requestWithGraphPath:@"me/photos"
                                 andParams:photosParams
                             andHttpMethod:@"POST"
                               andDelegate:self];     

// after image is posted, get URL for image and then start feed dialog
// this is done from FBRequestDelegate method
}

これを試して。それはあなたを助けるかもしれません。

于 2013-04-30T13:24:12.143 に答える