I want to share some information in google plus wall from my application. For that I go through the Google plus API, https://developers.google.com/+/ In that API they are mentioning how to get access token of a particular user,but they not mentioned how to post in users wall(using the access token).

link|improve this question

71% accept rate
feedback

2 Answers

up vote 18 down vote accepted

Well, Google+ doesn't have a "wall." It has Streams.

Unfortunately, at this time, the API is limited to read-only access. From the API website:

Note: The Google+ API currently provides read-only access to public data. All API calls require either an OAuth 2.0 token or an API key.

Because it's read-only, you will not be able to update or post any information anywhere through the API -- you can only use it to pull basic information like profile and activity details.

link|improve this answer
Hi Cory, thanks for the fast response.Is there any alternative way to do this(post in user's Streams) – joe Sep 27 '11 at 14:04
1  
@joe: Not that I know of, at least, not programmatically. – Cory Sep 27 '11 at 14:29
Google+ doesn't have a "wall." It has Streams. That's a good one :)) . It doesn't have likes , it has +1 .. and so on ... but what's the difference except the name convention ? btw what does twitter has ? – mihai May 2 at 18:29
@mihai: I corrected because a "wall" is generally a Facebook term, as are "likes"; Twitter has "tweets"; Google has "Streams" and "plus-ones." Terminology is an important component of software design and development; ambiguity is not a friendly term in our world. As for the difference, well, there are many. – Cory May 2 at 19:13
@Cory "tweets" are the messages posted not the "wall" where these are posted/displayed. – mihai May 3 at 20:34
show 1 more comment
feedback

This might help: I have made this bookmarklet to post links to pages that I liked to my stream:

javascript:location='https://plusone.google.com/_/+1/confirm?hl=en&url='+location

The URL is self-explanatory. If your post content can be served via URL then you can post it like that. The only difficulty is to automate the posting callback from Google but I do not need it, should not be too hard.

link|improve this answer
1  
Great link to know about... Do you know how to convert this to work for a brand page? – Mike S. Jan 5 at 20:21
This does not work(anymore?) – stoefln Feb 9 at 10:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.