I can get my list of youtube videos using google .NET client libraries following the example in the following link
https://developers.google.com/youtube/v3/code_samples/dotnet
This works fine when I am using it in a console application and my project's Client Id is of type 'Installed Application'.
I want to make it work for my web application. I created a client id of type 'Web Application' and provided appropriate redirect_uri. When I run the application, it always generates a random redirect_uri in the request and I am getting redirect_uri mismatch error. How can I fix this problem? What am I missing?