Google+ statistics - google-plus

What's method of this site? How are their profile's ID, information retreived ?
Is there any Google API for google+ ?

That is how it started. I entered maybe 30 profiles. The rest was added manually by visitors...

I'm working on an unofficial php api that can pull public profile and relationship data. You could probably use it to do something similar.
Here's the source on GitHub: https://github.com/jmstriegel/php.googleplusapi
Look in tests/plususer.php for an example of how to use it.
You can basically do something like this:
$followees = PlusPerson::FetchVisiblePlusPeople( $googleplus_id );
$followers = PlusPerson::FetchIncomingPlusPeople( $googleplus_id );
...which will give you an array of people a person has in their circles, and an array of people that have circled the person.

The API has now been announced at: http://googlecode.blogspot.com/2011/09/getting-started-on-google-api.html and the official homepage is: http://developers.google.com/+/

Google says there is going to be an API soon. What I suspect they are doing is parsing the public profile page go get the stats.

Got it. I'm taking Ids from search
First ten pages:
http://phpcode.eu/google/

Related

How to get residentadvisor API work?

I´m trying to connect to the API of residentadvisor (http://www.residentadvisor.net/api/dj.asmx?op=getartist).
My goal is, to get all informations of DJs (tracks and labels) and labels (DJs and tracks) and the TOP100, TOP1000 and so on.
Unfortunatelly, there is no good manual for this API. I wrote to residentadvisor and got no answer.
There are some examples given, but I don´t know what are the example values:
<UserID>string</UserID>: Is this my login name?
<AccessKey>string</AccessKey> Is this my personal user password?
<DJID>string</DJID> Where can I find the DJID of a DJ?
<ArtistName>string</ArtistName> Ok, this is just the artist name, right?
<ChartID>string</ChartID>: Where can I find the ChartID?
<Option>string</Option>: What are the options?
<URL>string</URL> Which URL ist this?
Any hints?
Thanks in advance
I just contacted them and they replied within 24 hours: "There are no plans to release our API currently"
(Update: There is now an official app called RA Guide in Google Play and App Store https://ra.co/ra-guide)

circledByCount returns NULL (Google+ API)

I need to find out number of people who circled my Google+ account using Google API+.
Well, currently my Google+ account is circled by 84 peoples.
I tried using this people->get API to retrieve my profile.
https://developers.google.com/+/api/latest/people/get
All data are fine except this "circledByCount". It just returns NULL.
Does it require special permission to show up?
Btw, I'm using "login" and "email" scope to retrieve the data.
Thanks
It now works for people too (as well as pages). See this post:
https://plus.google.com/+GerwinSturm/posts/CcVdibqsqNC
But it is still limited: it only counts public followers, regardless of what permissions (scopes) you may have.
You cannot get the circle by count for people it's only for pages
Check here
And here for the Nov 2012 release notes on the feature:
Looking at the matter, I have found that in the call in before "circlesByCount" showed, it has changed and now this field does not appear. I think now these data are provided by the Google Domains API, but whenever I try to test the API, it returns "Error 403 forbidden" and in the documentation "You do not have permission", so I'm not entirely sure.
I was getting this information via API up until 12/13/2013. Its been MIA since then.

How to get google+ 's public content (posts) to my website

I want to add Google +'s public posts (content) to my website.
I'm not talking about embedding The content.
It should be like Facebook's Like Box.(https://developers.facebook.com/docs/plugins/like-box-for-pages/)
Is it possible in Google Plus or i have to use hard coded embedded plugin ?
Thanks in advance.
I was fail to Attach image because of lack of "respect" but Hope i'm clear with my question.
Your question isn't entirely clear, but I think you might be asking for the Google+ Badges, which have similar capabilities to the Face Book Like Box. If your site has its own Page profile (or maybe create a page for your site), you'd use that type of badge. If its you as an individual that you want to display, you'd use the Person badge.

Google Custom Search API curl trouble

I'm a newbie at stackoverflow so please be patient with me :)
I'm trying to get access with the Google Custom Search API.
But I get return that I can't understand.
My query is like this:
https://www.googleapis.com/customsearch/v1?&key=********&q=red%2Bsox&cx=**********&start=0&num=10&cr=countryCA&lr=lang_fr&client=google-csbe&output=xml_no_dtd
And the result I get is this?
string '{"error": {"errors": [{"domain": "global","reason": "invalid","message": "Invalid Value"}],"code": 400,"message": "Invalid Value"}}' (length=172)
What am I doing wrong?
I want the result from Google to appear.
Thanks in advance :)
You don't have a cx.
Take a look at this answer
What happens is because this api is used mostly for adding a search option
for your site you have to specify you custom search engine (e.g. search only your site).
When you want this to search the web by code you need to do the above. Add a fake
site (where you would add your search textbox), configure it (search the web, or your site, or whatever else) and then delete the fake site
Update
Oh god, i just saw that. Sorry. Well the problem is that you start with 0. Valid is 1. Change start=0 with start=1 and i think you would be good to go. Take a look at this for valid values for the start parameter official page

Apple Appstore name search via the API?

Is it possible to do a search for apps by title via the API? For example, the equivalent of "Return a list of apps (if any) with the word 'dog' in the title".
I've seen two access points that come close, but don't seem to offer this:
The RSS feed; it lists apps, but apparently only groupings like, "top 100..."
The query interface; but it doesn't seem to query over the app media type. (?)
I found the answer. Although not explicitly documented, it's possible to search by app name.
http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
You're right, it wasn't very clear on that iTunes page at all. The parameter entity=software is the key. For example, here's a search for my app, TypeLink:
http://itunes.apple.com/search?entity=software&term=typelink&callback=myCallbackFunction
If you're wondering what the callback is for, here's some more info on the JSONP format it uses:
http://en.wikipedia.org/wiki/JSONP
For any future person who wants to link to the App Store keyword search result page directly from a web link - this format works as of April 2013:
http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&submit=media&term=KEYWORD%20GOES%20HERE
Was a PITA to figure out but finally got the syntax right... Needed this because a client has apps made by multiple developers so I couldn't just use the suggested Appstore.com/DeveloperName link to return all their apps.
Thanks all for sharing wisdom. Hope this helps someone.