alaouy / YouTube

🔥 Laravel PHP Facade/Wrapper for the Youtube Data API
MIT License
782 stars 204 forks source link

How to get category list? #112

Closed arjayads closed 6 years ago

arjayads commented 6 years ago

Returns a list of categories that can be associated with YouTube videos: https://developers.google.com/youtube/v3/docs/videoCategories/list

alaouy commented 6 years ago

@arjayads you can retrieve the categories like this :

$categories = Youtube::getCategories('US', ['snippet']);

https://github.com/alaouy/Youtube/blob/master/src/Youtube.php#L72

arjayads commented 6 years ago

Thank you very much