YouTube上传视频API在Laravel中停止运行

I'm using this Laravel package for YouTube APIs JoeDawson - YouTube

It was working fine before but now when I try to upload video it through following error:

Failed to start the resumable upload (HTTP 403: usageLimits, Access Not Configured. YouTube Data API has not been used in project 927065889954 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/youtube.googleapis.com/overview?project=927065889954 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.)

I've checked on Google Console, YouTube data API is enabled and everything seems to be fine as it was working before. What could be the issue then? Thanks!

$video = Youtube::upload($fullPathToVideo, [
                        'title' => $request->postTitle,
                        'description' => $request->postDescription,
                        'tags' => ['youthmedia', 'news', 'funny', 'information', 'social', 'pranks', 'songs', 'video', 'dance'],
                        'category_id' => 1,
            ]);
            if ($video->getVideoId()) {
                $data['post'] = 'https://www.youtube.com/embed/' . $video->getVideoId();
            }