如何使用php将youtube api数据转换为xml数据供稿?

时间:2018-10-25 20:07:05

标签: php json xml youtube

我有一个转换此JSON数据的想法:

https://www.googleapis.com/youtube/v3/videos?part=snippet&chart=mostPopular&maxResults=50&regionCode=us&videoCategoryId=10&key=Mykey

到xml,用于提要Rss阅读器

如何仅使用PHP做到这一点?

我的敬意

1 个答案:

答案 0 :(得分:0)

Youtube API仅返回JSON。您可以在代码中加载json并使用

实现自己的XML
header('Content-type: text/xml');
// other headers are required
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>";

echo '<xml>';
// Your data
echo '</xml>';