How to retrieve a user's video list using YouTube API v3?

I used to work with YouTube API v2 to get a list of videos from a specific user. It was pretty straightforward back then. You could just send a simple query and get the results.

Now I’m trying to do the same thing with YouTube API v3, but I’m a bit lost. Does anyone know how to fetch a user’s video list using the newer version of the API?

I’m looking for something similar to the old method, where I could specify the user, set a limit on the number of results, and order them by publication date.

If you have any code examples or can point me in the right direction, that would be super helpful. Thanks in advance for any tips or advice!

hey there! i’ve been messing with the v3 API lately. it’s a bit different, but not too bad. you’ll need to use the ‘search’ endpoint and set the ‘type’ parameter to ‘video’. also, don’t forget to include the ‘channelId’ parameter with the user’s channel ID. hope that helps get you started!