How to post in Google+ wall - api

I want to share some information in Google+ wall from my application.
For that I go through the Google+ API. In that API they are mentioning how to get access token of a particular user, but they do not mention how to post in users wall using the access token.

Well, Google+ doesn't have a "wall," it has "Streams." The proper term might help you find better search results. Either way, unless you're a Google partner, the news isn't good:
The API is currently 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.
Given that access to the API may change over time, I'll try to keep this answer up to date with information about news or changes related to write access.
News & Updates
2015-04-28: Google+ Domains API was announced way back in August 2013, but somehow I missed its relevance to Google+.
The Google+ Domains API allows Google Apps customers and ISVs to take advantage of enhanced Google+ APIs to build tools and services that can be used in a variety of ways.
No, it does not provide full write access to a user's Google+ profile, but it does give you minor advantages over the Google+ API v1, at least within a domain. This one's mainly for mobile app developers.
2015-01-21: I have revisited many of the sources linked in this answer and searched for news regarding API changes, but Google has been quiet.
2014-03-12: Various discussion threads on Google+ about write access (or lack thereof):
Discussion thread by Jeff Dwyer
In-depth discussion of the topic by Thor Mitchell (the Google+ team member mentioned in Update 6)
2013-12-03: The issue thread from UPDATE 1 has finally been responded to by a Google+ project member. Additional discussion regarding write-access to Streams is taking place intermittently on the Developing with Google+ community page.
2013-07-05: A developer named Eric Leroy has built an "unofficial" JavaScript library that provides read/write extension to the Google+ API.
via Google+ XHR Hack = w+ (Add/Post)
2013-05-14: A "social media management company" can gain additional API access by attempting to become a Google+ Pages API Partner.
Google+ Pages API Partner Application Form
More third party tools to help manage your Google+ page - An announcement from Eduardo Thuler
Original Google announcement of third party management tools
Here's an excerpt from the Partner Application Form:
The Google+ pages API allows social media management companies to add Google+ page management features into their tool. Access to this API is available through a whitelist, and access is granted to partners on a company by company basis dependent on fit with this API.
Other articles explaining the lack of a write API:
http://mashable.com/2012/08/02/google-to-developers-wont-screw-you/
2013-01-04: Google just announced Google+ History. You can use it to write "moments" (which are private by default) but can then be made public by sharing them directly to your stream and/or your profile. One of the moment types is CommentActivity.
2012-10-08: There's now a duplicate bug post with only a few comments, but you can check there for future updates as well.
2012-06-25: I came across the issue tracker post for Google+ Write Access. The enhancement request status is "New" and priority is "Medium" as of June 25th, 2012. There are some links of interest in the comments.

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.

If you use wordpress there is a plugin that allows you to post automatically to google plus WP Plugin Post to Google Plus however it's not free, cheap but not free.
You can probably debug it since it's php and see how they do that.

You can now do this. See google's developer docs below:
https://developers.google.com/+/domains/posts/creating
The only thing to be aware of is that the Google+ Domains API only allows creation of restricted posts, and only allows comments to be added to restricted posts.

Writing to Google+ Profile Streams is restricted to just domains.
For example, If you own a company named xyz co and has a domain xyz.com. You can used Google+ Domains API to write to streams. Though that will be restricted to people using same domain and using Google G Suit App for business and is not available for normal Google's gmail.com email ID.
The Google+ Domains API only allows creation of restricted posts, and only allows comments to be added to restricted posts.
For example Jon and Misha are working as employee in xyz co and has associated company mail id jon#xyz.com and misha#xyz.com then they can post to associated domain streams in Google+. Though these post will not be visible publicly and are restricted to be visible to members belonging to same domain. If any post has to be made public, then you have to do that task manually Ref.
If you are looking to post information on Google+ for some business or celebrity then you must are looking for Google+ Page API, which allows you to write post on business page. Though they have restricted here with partners application form that need to be approved for having your access to Pages API, which is very stringent and difficult to get approved.
The Google+ pages API allows social media management companies to add Google+ page management features into their tool. Access to this API is available through a whitelist, and access is granted to partners on a company by company basis dependent on fit with this API. If you are a social media management company interested in getting access to this API, please complete the form below with details about your company's platform. Please answer all questions below accurately; any inaccurate information that misrepresents your tool can affect your company's access to this API. If your company is a fit for this API's functionality, the Google+ team will reach out to the contact provided in this form with next steps. Please do not submit multiple entries to this form.
Other method to post in Google+ is via their Share button, Interactive Posting & Embedded Posting to Google+ Ref.

//Follow this : https://developers.google.com/+/mobile/ios/share/
-(void)shareGoogle{
[signIn authenticate];
[signIn trySilentAuthentication];
}
-(void)refreshInterfaceBasedOnSignIn {
if ([[GPPSignIn sharedInstance] authentication]) {
// The user is signed in.
NSLog(#"%#", [[GPPSignIn sharedInstance] authentication]);
[self didTapShare:nil];
}
else {
self.signInButton.hidden = NO;
// Perform other actions here
}
}
- (IBAction) didTapShare: (id)sender {
[GPPShare sharedInstance].delegate = self;
id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog];
// Set any prefilled text that you might want to suggest
[shareBuilder setPrefillText:#"message"];
[shareBuilder attachImage:[UIImage imageWithData:imageData]];
[shareBuilder open];
likeShareBtn.userInteractionEnabled = FALSE;
}
- (void)finishedSharingWithError:(NSError *)error {
NSString *text;
if (!error) {
text = #"Success";
} else if (error.code == kGPPErrorShareboxCanceled) {
text = #"Canceled";
} else {
text = [NSString stringWithFormat:#"Error (%#)", [error localizedDescription]];
}
NSLog(#"Status: %#", text);
}
-(void)presentSignInViewController:(UIViewController *)viewController {
// This is an example of how you can implement it if your app is navigation-based.
[[self navigationController] pushViewController:viewController animated:YES];
}

Related

Instagram & Serverless: get all Instagram post that mentioned/tagged my business account

I am wondering if this is simply feasible or FB/Insta does not allow this use case...
I have a community that is ready to share content by posting it on Instagram and tagging media/post/referencing my business account.
Is it possible in my backend while using the Instagram Graph API:
to get notified about any post mentioning my business account
to retrieve consequently posted content to grant points subsequently on my platform?
I am speaking about a competition where users get points by sharing useful content traced back by my platform
Any informed feedback welcome!

After Google+ People API list endpoint is deprecated. It is possible to get the visible friends list in circle?

Using "https://www.googleapis.com/auth/plus.login" api, we are getting the access to a list of people in the user's circles in addition to their name and profile information. After api deprecation, we using people.connections.list api "https://people.googleapis.com/v1/people/me/connections" as per documentation but we get list contacts only, not friends list in google+. please help us to retrieve the friends list in google-plus. Thank you
This is probably only telling you what you already know or have guessed.
From the deprecated People API page: "... calls to the API return empty circle data for those new sign-ins." and "In place of the social connection data from the Google+ People API, you can get rich contacts data from the new Google People API."
It seems that there will no longer be a public API for getting a Google+ friends list. Consider supporting an alternate social media platform for your app or utilizing Google Contacts.
It sounds like the People API will actually be more powerful than the G+ people.list method. The G+ API only listed people that the user had circled--that isn't the same as being a friend or close contact. The people API likely better reflects closer connections between individuals as well as exposing a broad number of contacts to apps. I think for most apps, this is an improvement.

Google+ api login

I am trying to create a site where you can login with Google+, but I am having some problems understanding the Google+ API.
Can anyone explain to me how to fetch information, such as e-mail, name, id, etc. or give me a good link for a site where I can find some documentation about this.
Before you suggest me to this site I have already read it but not finding out how to fetch info.
Google+ Sign-In provides users the ability to authorize your application to retrieve data from the Google APIs based on the scopes that you set for your button. When a user authorizes your app, the sign-in callback returns you an OAuth 2.0 access token. This token gives you the ability to queries any of the APIs that your scope granted access to, this is not limited to Google+ APIs. You pass your access tokens to the API when you make requests.
Basically, you read the prereqs and didn't continue reading the API docs for the lower level details specific to the API that you are interested in. In this case, it sounds like you want to retrieve a person's profile (A "Person resource") by using the people.get method. At the bottom of that page are code examples for a variety of languages.

How to show post of my google+ site on a website

A few days ago I was asked if it's possible to show the posts of a specific google+ site on a website. I try to explain it more detail:
A concern has google+ account.
The same concern has also a website.
Now "Cool Concern" want to show all posts from google+ on the newssite of it's website.
I read the Google+ Web API and HTTP API, but nothing seems to satisfy my request.
I know this is an absolute newbie question.
But I appreciate any hint:
is it in general possible?
which API I have to use?
Thanks a lot!
For users and Google+ Pages, you can retrieve all of the public posts that account has made via the activities.list API call. From this, you can surface the content on your own site.
To make the activities.list API call, you need only the Google+ ID of the user or Google+ Page that you are interested in. If your users are logging in to your site, you can use the special keyword 'me' to refer to the current authenticated user. In Python, this looks like:
activities_resource = service.activities()
request = activities_resource.list(
userId='me',
collection='public',
maxResults='2')
while request != None:
activities_document = request.execute()
if 'items' in activities_document:
print 'got page with %d' % len( activities_document['items'] )
for activity in activities_document['items']:
print activity['id'], activity['object']['content']
request = service.activities().list_next(request, activities_document)
You can see examples in additional languages, and learn more, at https://developers.google.com/+/api/latest/activities/list.
However, you will need to cache the data and refresh it regularly to ensure that there is no stale data, and that posts deleted from Google+ do not persist in your app. You can see the full developer policies at https://developers.google.com/+/policies.

Get all the information on the website through LinkedIn API

I'm working on an app for LinkedIn. I want to access all the information available on the website but the API doesn't return most of them. I was wondering how to get them.
I can use screen scraping but I wonder why the API doesn't return the information when I can easily access it on the website?
For instance this profile has many education information and it's public but none is returned via the API!!!
The LinkedIn API is purposely designed to return certain datasets, some that are only accessible via the website and not the API.
Also, scraping any part of LinkedIn's website or its content is in violation of the LinkedIn API Terms of Use: https://developer.linkedin.com/documents/linkedin-apis-terms-use