回答

1

在V3 Api中,您可以使用該用戶的頻道ID獲取訂閱列表。

GET https://www.googleapis.com/youtube/v3/subscriptions?part=snippet&channelId=*channelid*&maxResults=20&key={YOUR_API_KEY} 
1

在V3 API中,如果您有訪問令牌和通道ID。做出這樣

https://www.googleapis.com/youtube/v3/subscriptions?part=snippet&channelId=**channel_id**&access_token=**access_token**&maxResults=**max_results_between_0_to_50_default_5**


我不是一個專家或任何一個GET請求,但我得到正確的結果,現在什麼我的工作。
編輯:
@ prasad的答案是正確的,但該請求不會與api_key一起使用。剛剛用access_token替換了他的api_key。

+0

嘿,謝謝,它幫了我很多。 –

相關問題