Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
53
rated 0 times [  56] [ 3]  / answers: 1 / hits: 81055  / 10 Years ago, fri, april 4, 2014, 12:00:00

I am trying to use the Youtube API to pull in all the videos from a particular channel. I set up the project in Google Developers Console and got an API browser key. I enabled YouTube Data API v3 and for safe measure, I enabled YouTube Analytics API.



I do not know what I am getting this error. Can anyone help me.



{
error: {
errors: [
{
domain: usageLimits,
reason: accessNotConfigured,
message: Access Not Configured. Please use Google Developers Console to activate the API for your project.
}
],
code: 403,
message: Access Not Configured. Please use Google Developers Console to activate the API for your project.
}
}


Code i'm using. It doesn't do anything yet, just try to fetch the data.



jQuery.getJSON('https://www.googleapis.com/youtube/v3/channels?part=UncleBens&id=UncleBens&key=AIzaSyDXD80S1mFHH2HSZFxLemkae-_Cl_nY5Xk', function(data){
console.log(data);
for(var i=0; i<data.data.items.length; i++) {
console.log(data.data.items[i].title); // title
console.log(data.data.items[i].description); // description
}
});

More From » youtube-api

 Answers
7

Try setting the Referers to Any referer allowed for your project (just leave the field empty) in the Google Developers Console if it is not already like that.



To do this, go to your Google Developers Console and open API & Auth / Credentials and click Edit allowed referers empty the input field.


[#71610] Thursday, April 3, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
xavier

Total Points: 711
Total Questions: 91
Total Answers: 121

Location: Gabon
Member since Sat, Jul 25, 2020
4 Years ago
;