Share Text, Image and Url on Google+ without login

328 Views Asked by At

I would like to share Image with Url on Google+ without login on my iOS app.

I have used :

NSString *temp = @"Hello World";

// Construct the Google+ share URL
NSURLComponents* urlComponents = [[NSURLComponents alloc]                                                      initWithString:@"https://plus.google.com/share"];
                urlComponents.queryItems = @[[[NSURLQueryItem alloc]
                                              initWithName:@"text"
                                              value:temp]];
NSURL* url = [urlComponents URL];

if ([SFSafariViewController class]) {
    // Open the URL in SFSafariViewController (iOS 9+)
    SFSafariViewController* controller = [[SFSafariViewController alloc]                                                               initWithURL:url];
    controller.delegate = self;
    [self presentViewController:controller animated:YES completion:nil];

} else {
    // Open the URL in the device's browser
    [[UIApplication sharedApplication] openURL:url];
}

I am not getting how to send Image with same Method ..

2

There are 2 best solutions below

0
On

Maybe too late to answer this question, but someone will be useful.

NSURL *shareURL = [NSURL URLWithString:@"https://example.com/image.jpg"];
urlComponents.queryItems = @[
        [[NSURLQueryItem alloc] initWithName:@"url" value:[shareURL absoluteString]],
        [[NSURLQueryItem alloc] initWithName:@"text" value:text]
    ];
2
On

Swift 4.1

 let strKeyValue: String =  "https://example.com/image.jpg"

guard var urlComponents = URLComponents(string: "https://plus.google.com/share") else {
                return nil
   }    
 urlComponents.queryItems = [URLQueryItem(name: "url", value:strKeyValue),URLQueryItem(name: "text", value:"This is testing text")]

  let browserViewController = SFSafariViewController(url: urlComponents.url)

  browserViewController.delegate = self 

  present(browserViewController, animated: true)