I'm using the YouTube Data API v3 with Ruby.
In the channels.list (list_channels) method, I noticed that the forHandle filter doesn't seem to work.
Is this by design?
Running the following code causes this error.
youtube.list_channels(part, for_handle: 'handle_name')
After inspecting the method's arguments, I found that it does not accept the for_handle keyword.
youtube.method(:list_channels).parameters
Any advice would be greatly appreciated.


optionsHash e.g.youtube.list_channels(part, options: {for_handle: 'handle_name'} )it does look like this has been added as a keyword in the main branch if you wanted to install from there instead (Sourc)