Google Plus Crawler - google-plus

I am working with a social media analysis and I'm collecting datasets for research. I have been searching on the web about any way to make a Google plus crawler. I had great experience with Twitter Streaming API, and even Facebook Graph API, but, I did not find anything on Google+ documentation that can help me.
Then, my question is if does anyone know about the possibility to make a Google plus crawler to gather information of public posts?

It isn't clear exactly what you're looking to crawl on Google+, but it sounds like you want the Google+ API for the web. In particular, you'll probably want to use the people.get, activities.search, activities.list, and/or comments.list HTTP API instructions.
Be aware, however, that this will only return public comments that were not shared to a community, even if that community is a public community.

Related

Can I track if someone clicked a link on my Twitter post

I have a private business Twitter account and I would like to know when someone clicks any link inside one of my posts. This solution cannot assume that we know the form of the link being posted.
For example a twitter post like this:
Have you guys heard of this amazing site called google?
I would like to see how many people clicked on this google.com link. I don't need to know any specific information about who they are, just if it was clicked or not.
Ideally I would want this from the API but crawlers and plugins are also possible. I would like to avoid using a paid tool but those would be acceptable.
I think you have multiple choices:
Use google firebase or google analytics
Create your own short link services by python or any other programming languages.
Just search in the google and look for short link generators which gives appropriate service.
Hi using the twitter api you should be able to understand how many clicks a link has.
https://developer.twitter.com/en/docs/twitter-api/metrics
But to have all this info automated you might need to use a third-party tool.
This should be the most straight forward solution.

Is there a way to integrate my youtube community posts into my website?

I was already aware that using Twitter's API you could link any tweet you made on Twitter onto a feed on another website.
However, I want to possibly, in the future or right now, be able to use YouTube's API to link my posts on my community page to my website updates. Of course, I would rewrite the code and get rid of my Twitter updates and API and replace it with the YouTube community posts API, but first I need to know if it is even possible. I know, YouTube community posts are relatively new, so there might not be an easy answer for this. Maybe someone could point me in a direction to find answers, if there are any. I could make a post about this on the YouTube support forums, but I'm sure you're all aware that the most I'll get is an automated response, not a real person to help me out. Any help is appreciated. I look forward to your responses and advice.

Instagram's API

After the deprication of the instagram's API which provides the information about the followers of a user, some 3rd party apps can still provide the information of user's connection. What is the reason behind that?
I assume they are using a private Instagram API by reverse engineering it.
One way to do that is to observe the requests your browser makes (with the developer tools) and then remake the requests in their own code, providing the proper data, cookies, etc.
It can all be observed through the developer tools.
Hope it helps !
Beside IG's public API which is deprecated now, there are other solutions to achieve this. they may have bought the data from facebook inc or use tools and libraries like instagram private api.

Hosting Google Plus Communities on My Website

Is it possible to embed a google community into a website page?
This way our clients can benefit from content and all other features in our website, yet be able to collaborate using Google Communities.
Ideally I would like to grab a Javascript code just like +1 button and paste it into my website page, add an iframe or something of this nature!
UPDATE:
Sounds like if I try to be convincing, I may be able to influence some decisions!
More details: Our website services offers login with Google using Google OAuth, This way the user is either logged in or is forced to login with Google to get access to private areas of our customer portal, where you can review the status of Support Tickets, submit new support tickets, have access to knowledge base, documents, blogs, etc.
We have incorporated all sort of social plugins into the blogs, product catalogs and so forth.
It would be fantastic is the users can have access to a community (Forum or Discussion Board) within the same place. Google Community seem to be the tool but in the wrong place.
No such widget exists at this time, but it's an interesting idea. If you want to share more details on precisely what you're looking for, you can file the issue here: https://code.google.com/p/google-plus-platform/. The more details you can provide, the more likely that, if we decide to implement this feature, we'll end up with something that you want.

Google API: show online contacts for Google Talk/Chat and Google Hangout

I might have overlooked this, but I'd like to implement Google Talk and Google Hangout on my site and I'm looking for some kind of (official, preferably PHP) API call that retrieves the online/offline contacts of a Google+ user. (similar to the list of online contacts next to Gmail)
Is this API functionality available and is it possible to provide the user with the option to select contact(s) to start a Google Hangout with?
To start, you're likely going to need to leverage a few different APIs. Since I cannot add a comment to ask questions, here's a recommended reading list based on my recent work with the Plus & Hangouts APIs:
Google Plus - https://developers.google.com/+/api/latest/people/list - Collect a list of people in your circles. This will not tell you who's online or offline. May be optional (see #2). Unfortunately, this call is not available yet in the PHP Client Library, so I created one for my personal project and am waiting on some vetting to submit it back to the Google project. If you're interested, I'd be happy to share.
Google Talk - https://developers.google.com/talk/ - Use that query the Talk service to see who's online and/or offline.
Starting a Hangout - Seems this discussion # the developer group is similar to your question and can best point you in a good starting direction. https://groups.google.com/forum/#!topic/google-plus-developers/r_f7iweZ7c8
Hope that helps & curious to hear how it goes!