我已设置YouTube API以获取各种信息。例如,如果我想要YouTube用户的频道名称,我会输入以下代码:
$channelsResponse = $youtube->channels->listChannels('snippet', array(
'mine' => 'true',
));
$_SESSION['channel'] = $channelsResponse['items'][0]['snippet']['title'];
所以我的问题是:通过我的代码设置,我如何才能获得YouTube合作伙伴网络?例如,如果经过身份验证的用户是itsjerryandharry
,则该计划应该告诉我Maker Studios
(或RPM
或SocialBlade
或现在调用的任何内容... ...
答案 0 :(得分:1)
尝试这样做时遇到了类似的问题,但我设法提出了这个解决方案:
How to programmatically find out what channels are part of a given YouTube network?
答案 1 :(得分:0)
我相信您可以查看视频/频道网页源代码并提取相关信息。