Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我拥有一个生成 YouTube 名称的网站,如果频道已被占用,我如何向用户显示?
您可以为此使用频道-> 列表请求。
如文档中所述,您需要做的就是做
channels.list(part="id", forUsername="username")
如果这返回一个空列表,则没有具有该用户名的频道。
这里还有一些示例可以帮助您入门。
你可以试试
$api = 'https://gdata.youtube.com/feeds/api/users/'; $user = "user"; $headers = get_headers($api . $user, true); if ($headers[0] == "HTTP/1.0 200 OK") { // its ok }