- Home /
Post To Google Plus
I have been searching for a while now and haven't found much on this topic. There doesn't seem to be an API or SDK that supports this.
So I'm wondering is it even possible to post to Google+ from a unity game?
You'll need to establish a http connection, send appropriately named form data over it, and wait for responses as needed. Log in, get user authentication token, send form data meeting the requirements for making a post.
Check out this link for more info. The Google+ API currently only supports read-only access to get data (so no creating a post using the API alone). That link does link to a project someone made to extend the Google+ API to allow write access, too. Be wary though, if Google changes how posts are made, that person's API will probably need to be modified to suit.
Apart from that, do you really think there are more than five people on the planet who want to post to Google Plus from your game?
Answer by JonK · Feb 28, 2014 at 10:27 PM
Thanks Nesis!
That's exactly what I was looking for.