0
我設法登錄與Facebook的工作,並設法得到一個活動會話....但是,我想張貼到Facebook的照片或發佈消息到Facebook。你能告訴我,如果我做對了嗎?它似乎沒有工作,因爲我看不到任何東西在我的牆上發佈。Facebook的請求withWraphPath:andParams:andHttpMethod:andDelegate
UIImage *image = combinedImage;
NSString *strMessage = @"Check out my photo";
NSMutableDictionary* params = [NSMutableDictionary dictionary];
[params setObject:strMessage forKey:@"message"];
if (image) {
[params setObject:image forKey:@"picture"];
[facebook requestWithGraphPath:@"me/photos" andParams:params
andHttpMethod:@"POST"
andDelegate:self];
} else {
[facebook requestWithGraphPath:@"me/feed" andParams:params
andHttpMethod:@"POST"
andDelegate:self];
}
謝謝你們!