2

I'm able to create Interactive post by using sample example, as below.

            Intent shareIntent = new PlusShare.Builder()
                    .setType("text/plain")
                    .setText("Welcome to the G+ platform.")
                    .getIntent();

            startActivityForResult(shareIntent, 0);

when the activity starts it shows up window where user have to press share button manually. Is there any way to post directly to Google plus stream by adding default recipients(Public/to circle) without asking user to press Share button.

Vins
  • 4,089
  • 2
  • 35
  • 50

1 Answers1

4

For content that appears in a user's stream, that user must explicitly share it. Put another way, posting to the user's stream is to do something that the platform does not support. This is done by design because users want to be in control of what appears in their stream. Deceiving the user and posting to their stream or sharing without consent puts you in violation of the Google+ developer policy and your API client can be banned until you are compliant should you even find a way to do this.

More information and several related questions are:

Please post the feature request in the Google+ platform issue tracker and let the Google+ platform team know why you feel you should be able to do this.

Community
  • 1
  • 1
class
  • 8,621
  • 29
  • 30