gpt4 book ai didi

php - Youtube API v3-检索 channel 名称

转载 作者:行者123 更新时间:2023-12-03 05:37:59 24 4
gpt4 key购买 nike

我需要获取 channel 名称(标题)的帮助。我想用json_decode来做,但是我不知道怎么做。请帮助我:)谢谢:)

https://www.googleapis.com/youtube/v3/channels?part=snippet&forUsername=$youtubechannel&key=YOUR_KEY&getJSON

$url="https://www.googleapis.com/youtube/v3/channels?part=snippet&forUsername=$youtubechannel&key=YOUR_KEY&getJSON";
$json = file_get_contents($url);
$json_result = json_decode($json, TRUE);
$raw_channel_name = $json_result->results[0];
$channel_name = $raw_channel_name->title;
echo $channel_name;

最佳答案

真诚的我更喜欢使用CURL而不是“file_get_contents”,它更加灵活。

关于json_decode,如果要使用对象,请摆脱第二个参数。 “YES”参数将结果强制为“ARRAY not object”。

json_decode($json)

如果使用第二个参数,则:
$result = json_decode($json,YES) 

var_dump($result);

您将看到一个数组。

关于php - Youtube API v3-检索 channel 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34141557/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com