php - YouTube API - Find User's Partnership Network -


i have setup youtube api various bits of information. example, if want youtube user's channel name, have code:

$channelsresponse = $youtube->channels->listchannels('snippet', array( 'mine' => 'true', )); $_session['channel'] = $channelsresponse['items'][0]['snippet']['title']; 

so question is: code setup this, how can youtube partnership network? example, if authenticated user itsjerryandharry program should tell me maker studios (or rpm or socialblade or whatever it's called now)...

i had similar issue when attempting this, managed come solution:

how programmatically find out channels part of given youtube network?


Comments