Display posts using the Google+ API - google-plus

Does anyone know if it's possible to display posts from a users Google+ page using the new Google+ API?
I know you can use it do include a +1 button on a site, but I'm wondering if the API could be used to deliver something akin to a Twitter feed?
Cheers!

You will want the activities list API method.
The endpoint would be https://www.googleapis.com/plus/v1/people/{userId}/activities/public

Related

Can i wirte follow/unfollow bot with Instagram?

I want to Write Bot for Follow/Unfollow user in instagram , but instagram Api deprecated Follow and Relationships ...
can i use instagram Api for this goal or must be use selenium automation ?!
As per this article the Instagram API no longer provides functionality to follow or unfollow users. Looking at the current endpoints provided by the Instagram API the set of operations looks very limited - fetch a user, or a user's latest media, and get a list of comments on your media. You can view the changelog for the Instagram API here.
So to answer your question, no you can no longer use a bot to follow or unfollow a user via the Instagram API. Yes you will be able to write a Selenium script that will do this.
Try https://www.instagram.com/web/
https://www.instagram.com/web/friendships/6810462142/unfollow/
6810462142 = ID USER...
I think it works
You may need to use a tool such as Keygram - https://www.thekeygram.com
It does exactly what you are looking for with the follow/unfollow

how can i get all review from google+ using api

i am beginner to google+ developer API and i want to grab user review from any about page for example https://plus.google.com/116018016837619707952/about
i have tried using curl call but didn't get success for all reviews.
also seen the content of document :https://developers.google.com/+/api/latest/people/get
can You just give me the idea about google api to grab review data.
Reviews are not considered part of the Google+ Platform. You have to use the Places API.

How to get Page Notifications through Google+ API

Is there a way to get a list of all Private/Public Page notifications through the Google+ API?
for example, the notifications that you see on this page from your browser: https://plus.google.com/u/0/b/{YOUR_PAGE_ID_HERE}/notifications/all
I can only see the ability to get Public activities through the API.
No, this is not currently available. See (and star) https://code.google.com/p/google-plus-platform/issues/detail?id=96 to register your support for such a feature.

Google+ api to get the home feed

I need to get the posts user see on his home feed, in a json format. via google+ http api. Didn't find any public documentation about it, anyone know a way?
Google+ does not provide a stream API or any method to view non-public posts.

Is it possible to get a users whole twitter profile in the header user twitter api?

I am trying to get just the top rectangle (https://twitter.com/cnnbrk see this page to see what I am talking about) from twitter accounts using the twitter api and placing them on my site. I want users to be able to press follow to follow the user as well. Anyone know a way to do this? Thanks!
That's quite easy. Retrieve the user with the corresponding Twitter API endpoint, i.e. GET users/show (https://dev.twitter.com/docs/api/1/get/users/show). Then, do your own rectangle to display the information provided by Twitter.