你好我的名字是ryoichi。如何上傳臉書上的圖片組在目標c
我正在嘗試製作iphone應用程序。 我想在facebook上創建上傳圖片。 但我不能。我可以上傳picuture,評論我的牆。
我嘗試發佈Facebook羣組,但沒有錯誤。 只發表評論。
這是我的代碼
UIImage *img = [UIImage imageNamed:@"neko.jpg"];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img, @"picture", @"testcomment", @"message",
nil];
[img release];
NSString *test [email protected]"/168782779916152/feed";
[[delegate facebook] requestWithGraphPath:test
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
請幫助我。
權限是否有誤? permissions = [[NSArray alloc] initWithObjects:@「publish_stream」,@「photo_upload,user_photos」,@「user_groups」,nil]; – ryoichi
非常感謝。 dragon112和天使。 我使用didReceiveResponse mesod.so我明白我的錯誤,這很容易犯錯。錯誤:NSString * test = @「/ 168782779916152/feed」;正確:NSString * test = @「/ 168782779916152/phots」;謝謝 。 – ryoichi