-1

Possible duplicate: Is there already a Google+ API?

I know there is a new Google+ API came out recently: http://developers.google.com/+/

However, it is limited to writing moments, sharing, +1 only. I want be able to view feeds/pictures like Facebook/Twitter.

Is it not available? Or am I not looking at the right place?

Community
  • 1
  • 1
jclova
  • 5,466
  • 16
  • 52
  • 78

3 Answers3

2

Currently the Google+ History API only supports writing moments. The history API is still in developer preview, which means it is not yet final and subject to changes.

If you follow the Google+ Developers page, you'll hear about any updates as soon as they are released. You can also sign up for the platform preview group to test upcoming changes and hear about updates.

BrettJ
  • 6,801
  • 1
  • 23
  • 26
0

What is a 'moment'? G+ stores pictures on Picasa, so you could use the Picasa API to get the pictures. A 'full' API is not available, AFAIK.

Nikolay Elenkov
  • 52,576
  • 10
  • 84
  • 84
0

To read from the Google+ API you need to use the REST endpoint. It is documented here:

https://developers.google.com/+/api/

There is an example of using the REST api from within Android here:

https://developers.google.com/+/mobile/android/

The example writes a moment using the REST api, but it should be straight forward to use it to read from the public data api instead.

Lee
  • 3,972
  • 22
  • 17
  • Thanks Lee, but I specified that: "I know there is a new Google+ API came out recently: http://developers.google.com/+/". My question is whether reading feeds(moments) api exists or not. – jclova Oct 15 '12 at 17:36