Reputation: 99
I'm currently trying to create an app to share links, pictures or video to Google Plus. I've seen the documentation on sharing from Google Plus developer here: Sharing to G+ from your app
And realised that the part of the code:
Intent shareIntent = new PlusShare.Builder(this)
where my IDE could not resolve PlusShare as it was deprecated as described here: Plus API deprecation notes.
Could anyone post a way around as I could not find any example codes on how to share to G+ without using the deprecated code.
Thanks!
Upvotes: 0
Views: 109
Reputation:
There is no way to programmatically post to the google+ wall/stream. You can only make a GET request for google data.
Upvotes: 3