0

Is there any way to post on google plus using public api key. I dont want to go for client id and secret method as that needs user consent and I want to post every activity on google plus automatically as soon as it is generated.

I checked reading of public posts by this

https://www.googleapis.com/plus/v1/people/{user_id}/activities/public?key={public API key}

Thats working fine as expected but my need is to post on my g+ page using API key Please help me out in this or is there any third party library in python which can do the same thing for me like we do in twitter(tweepy)

abraham
  • 46,583
  • 10
  • 100
  • 152
Nitish Kansal
  • 478
  • 4
  • 6

1 Answers1

0

You can not automatically post activities to Google+ (Unless you have a Google Apps for Business account). You can either use moments.insert which can be inserted programmatically, or you have to use the embeddable share button.

abraham
  • 46,583
  • 10
  • 100
  • 152
  • Abraham, I have google apps for business account. How can I post activities automatically using that account. I didn't find proper documentation anywhere to do this. – Nitish Kansal Jun 26 '14 at 08:58
  • Google Apps has a [separate docs section](https://developers.google.com/+/domains/api/activities/insert). – abraham Jun 26 '14 at 17:06