Is there any way to post directly on google Plus without extra share on web,
Now i am successfully posting on google Plus, every time i do like below, but
id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance] shareDialog];
// do additional stuff like filling the text message to "shareBuilder"
...
...
//after this
[shareBuilder open]; //this leads to open web page where google provides its own share button
what my problem is, i want to post directly on google plus by bypassing this web page is there any way i can achieve this or this is the mandatory steps that we have to share through this "web share". i tried searching on it, but i did'nt find any thing. I need more help on this
Thanks in regards :)
In the Google+ iOS SDK 1.4.0, you can now use native in-app sharing. This partially resolves I think one of your concerns about leaving your app. There is no Google+ API on ANY platform that will allow you to post directly to the stream though. Users always retain control over what they share on Google+.
To migrate to the native sharing method, use the following code:
You will also need to include some additional frameworks in your XCode project, see the list on the getting started page.
Currently it is mandatory to use the share dialog so that the user is in control of all posts made to their stream.