1

我在 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。

谁能帮我?

提前致谢。

4

4 回答 4

5

目前无法使用 Google+ iOS SDK 在 Google+ 上共享图像。

于 2012-08-09T22:47:00.090 回答
3

这可以与 google plus 共享图像

- (IBAction) didTapShare: (id)sender {
    id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog];
    [shareBuilder attachImage:[UIImage imageNamed:@"yourImagename.png"]];
    [shareBuilder open];
}

引用自https://developers.google.com/+/mobile/ios/share/

于 2013-11-26T06:50:29.427 回答
1

这些链接将有所帮助:

链接 显示可以共享的方式和内容。

  1. https://developers.google.com/+/mobile/ios/share/

在链接 1 的底部,它提到“将媒体附加到您的共享帖子中。您可以将图片和电影附加到您的帖子中,以便您的用户共享到他们的信息流中。”

  1. https://developers.google.com/+/mobile/ios/share/media

链接 2 显示了共享媒体的代码片段;图片和视频

以下是在 google+ 上分享图片的代码片段

- (IBAction) didTapShare: (id)sender {
 id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog];

 // Set any prefilled text that you might want to suggest
 [shareBuilder setPrefillText:@"Achievement unlocked! I just scored 99 points. Can you beat me?"]

 NSString *fileName = @"samplemedia1";
 [shareBuilder attachImage:[UIImage imageNamed:fileName];

 [shareBuilder open];
}
于 2014-11-28T07:17:58.307 回答
1

@Chirag ...您应该会看到适用于 iPhone/iPad 的 Flipboard 应用程序。它在 Google+ 帐户上分享链接、评论和图片。请看一下,如果我在任何时候错了,请告诉我。

于 2013-03-27T18:27:30.693 回答