我正在使用以下代码发布到用户的墙上。它工作正常,但我注意到它还创建了一个以我的应用程序命名的相册,并将图像添加到该相册。这是 iOS 应用程序的预期行为吗?有没有什么方法可以只在墙上发布而不将图像保存在用户帐户中?
FBRequestHandler handler =
^(FBRequestConnection *connection, id result, NSError *error)
{
// output the results of the request
NSLog(@"Error - %@", error);
NSLog(@"Result - %@", result);
};
UIImage *img = [logo getImage];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"Test Message",@"message",img,@"picture",nil];
[FBRequestConnection startWithGraphPath:@"me/Photos"
parameters:params
HTTPMethod:@"POST"
completionHandler:handler];