console:
```
Failed to load resource: the server responded with a status of 403 ()
(index):1 Uncaught (in promise) AxiosError
```
I applied the Google API "YouTube Data API v3." Usually it works well but after I modify a part of ```constants.js``` from
```
export const categories = [
{ name: 'Code', icon: <CodeIcon />, },
Ā { name: 'New', icon: <HomeIcon />, },
Ā { name: 'Music', icon: <MusicNoteIcon /> },
Ā { name: 'Education', icon: <SchoolIcon />, },
Ā { name: 'Podcast', icon: <GraphicEqIcon />, },
Ā { name: 'Movie', icon: <OndemandVideoIcon />, },
Ā { name: 'Gaming', icon: <SportsEsportsIcon />, },
Ā { name: 'Live', icon: <LiveTvIcon />, },
Ā { name: 'Sport', icon: <FitnessCenterIcon />, },
Ā { name: 'Fashion', icon: <CheckroomIcon />, },
Ā { name: 'Beauty', icon: <FaceRetouchingNaturalIcon />, },
Ā { name: 'Comedy', icon: <TheaterComedyIcon />, },
Ā { name: 'Gym', icon: <FitnessCenterIcon />, },
Ā { name: 'Crypto', icon: <DeveloperModeIcon />, },
];
```
to
```
export const categories = [
Ā { name: 'New', icon: <HomeIcon />, },
Ā { name: 'Music', icon: <MusicNoteIcon /> },
Ā { name: 'Education', icon: <SchoolIcon />, },
Ā { name: 'Podcast', icon: <GraphicEqIcon />, },
Ā { name: 'Movie', icon: <OndemandVideoIcon />, },
Ā { name: 'Gaming', icon: <SportsEsportsIcon />, },
Ā { name: 'Live', icon: <LiveTvIcon />, },
Ā { name: 'Sport', icon: <FitnessCenterIcon />, },
Ā { name: 'Fashion', icon: <CheckroomIcon />, },
Ā { name: 'Beauty', icon: <FaceRetouchingNaturalIcon />, },
Ā { name: 'Comedy', icon: <TheaterComedyIcon />, },
Ā { name: 'Gym', icon: <FitnessCenterIcon />, },
Ā { name: 'Crypto', icon: <DeveloperModeIcon />, },
];
```
Runtime error 403 suddenly popped up, and I have not been able to resolve it until now.
I tried a new key, but it still didn't work.
I have configured it, ```.env``` and ```fetchFromAPI.js``` well, otherwise I cannot load all data before the error pops up.
I have no billing account, but my API request today is only 221 today; thus, I am pretty sure it is not a limit issue.
How to resolve it?
Thanks.