iphoneでGoogle Plus APIを使ってコンテンツと(Links)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プラスに画像を投稿したいです。
誰でも私を助けることができますか?
前もって感謝します。