i have a problem getting a list of my uploded youtube videos, i think im following the documentation corectly but i always get the error "Uncaught exception 'Google_Service_Exception' with message 'Error calling GET https://www.googleapis.com/youtube/v3/videos?part=contentDetails&chart=mostPopular: (403) Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
below is my code
$OAUTH2_CLIENT_ID = 'myclientid';
$OAUTH2_CLIENT_SECRET = 'myclientsecret';
$client = new Google_Client();
$client->setClientId($OAUTH2_CLIENT_ID);
$client->setClientSecret($OAUTH2_CLIENT_SECRET);
$client->setScopes('https://www.googleapis.com/auth/youtube');
$redirect = filter_var('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'],
FILTER_SANITIZE_URL);
$client->setRedirectUri($redirect);
// Define an object that will be used to make all API requests.
$youtube = new Google_Service_YouTube($client);
$m = $youtube->videos->listVideos('contentDetails', ['chart' => 'mostPopular','mine' => true]);
var_dump($m->items());