我在 iphone 中使用 Google Plus API 成功发布了内容和(链接)URL。使用以下代码:
googleShare =[[[GooglePlusShare alloc] initWithClientID:@"my key"] autorelease];
[googleShare setDelegate:self];
appDelegate.shareGOOGLe =googleShare;
NSString *inputURL = @"";
NSURL *urlToShare = [inputURL length] ? [NSURL URLWithString:inputURL] : nil;
NSLog(@"%@",urlToShare);
NSString *inputText = @"TEst Sharing testing from iOS 5.0";
NSString *text = [inputText length] ? inputText : nil;
NSLog(@"%@",text);
[[[[googleShare shareDialog]
setURLToShare:urlToShare]
setPrefillText:shareMessge] open];
但我想将图片发布到 google plus。
谁能帮我?
提前致谢。