Android Google Plus Circles Birthday -


i've been searching explanation on why can't gather birthdays or taglines people in user's circle on google plus. i've played oauth 2.0 playground , retrieved birthday , tagline info people in circles have security set "visible circles" can't figure out why isn't available in google+ api android.

the user logged in google plus using apiclient:

mgoogleapiclient = new googleapiclient.builder(gathergoogle.this) .addconnectioncallbacks(this) .addonconnectionfailedlistener(this) .addapi(plus.api, null) .addscope(plus.scope_plus_login) .addscope(plus.scope_plus_profile) .build();  

then in onconnected(bundle connectionhint) method, after gathering current user's info populate header, call peopleapi load visible connections:

plus.peopleapi.loadvisible(mgoogleapiclient, null).setresultcallback(this); 

this calls onresult(loadpeopleresult peopledata) method supposed return list of people, does. gives me display name, id, thumbnail, etc... basic profile info typical. i'm curious need next level of info persons profile. if go online google+ account, can click through people in circles , see birthdays , taglines, , playing playground, can retrieve information... can't figure out how implement needed in android app.

are there other scopes need add? , documented? there separate call make people api? fine making calls , parsing through json data, wanted know best way, if any, go without trouble.

any appreciated!

on google+ profile -> -> basic information -> edit

you should change circles "public" , mark "show birthday year"

result "yyyy-mm-dd"


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

How to use vim as editor in Matlab GUI -