Reading the official documentation I found this code:
YouTubeRequestSettings settings = new YouTubeRequestSettings("example app", clientID, developerKey); YouTubeRequest request = new YouTubeRequest(settings);
but he says If you do not specify authentication information when creating the YouTubeRequestSettings object, then you will only be able to use the YouTubeRequest object to perform operations that do not require authentication.
I don't mind authentication, but if I try:
YouTubeRequestSettings settings = new YouTubeRequestSettings("example app");
Key is still waiting for the developer, so it does not work.
How can I create this object without auth? Are there any methods for this?
source share