Google プラスで写真を共有する必要があります。
私がしたことは次のとおりです。
AppDelegate.m
static NSString * const kClientId = @"MyClient ID";
[GPPSignIn sharedInstance].clientID = kClientId;
ボタンクリックで
- (IBAction)SharePressed:(id)sender {
id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance] shareDialog];
// This line will manually fill out the title, description, and thumbnail of the
// item you're sharing.
[shareBuilder setTitle:@"Try Sharing g+" description:@"demo" thumbnailURL:[NSURL URLWithString:@"http://UrlForShaingPhoto/asd/imagename.jpg"]];
[shareBuilder open];
しかし、クリックすると表示されます
[lvl=3] -[GPPShareBuilderImpl getURL] Content deep-link ID is required with title and description.
そして何も起こらない