;Kanye West Amazing;应该返回几个youtube链接。然而,通过api的youtube查询返回null(来自console.log):
<!doctype html>
<html>
<head>
<title>Vidify</title>
</head>
<body>
<!--Add a button for the user to click to initiate auth sequence -->
<button id="authorize-button" style="visibility: hidden">Authorize</button>
<script type="text/javascript">
var clientId = '591751286145-ktngvf2s76uiuuevan6mo1fft0kchl8l.apps.googleusercontent.com';
var apiKey = 'AIzaSyB0mteDV5vDKFR-iAv4Fx4OC2gp1Yhqe9U';
var scopes = 'https://www.googleapis.com/auth/youtube';
function handleClientLoad() {
console.log('API key provided - authorizing client...');
// Step 2: Reference the API key
gapi.client.setApiKey(apiKey);
gapi.auth.init(checkAuth);
}
function checkAuth() {
console.log('entered checkAuth - authorizing...');
setTimeout(function() {
console.log("requesting auth");
gapi.auth.authorize({
client_id: clientId,
scope: scopes,
response_type:'token',
immediate: true
}, handleAuthResult);
}, 100);
}
function handleAuthResult(authResult) {
console.log('received authResult');
var authorizeButton = document.getElementById('authorize-button');
if (authResult && !authResult.error) {
console.log("auth. successful");
authorizeButton.style.visibility = 'hidden';
makeApiCall();
} else {
console.log('auth failed.');
authorizeButton.style.visibility = '';
authorizeButton.onclick = handleAuthClick;
}
}
function handleAuthClick(event) {
// Step 3: get authorization to use private data
console.log('retry');
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
return false;
}
// Load the API and make an API call. Display the results on the screen.
function makeApiCall() {
console.log("loaded client");
gapi.client.setApiKey(apiKey);
// Step 4: Load the Google+ API
gapi.client.load('youtube', 'v3', function() {
console.log('youtube API loaded...');
// Step 5: Assemble the API request
var qVar = "Kanye West Amazing"
// changed. added: type
var request = gapi.client.youtube.search.list({
type: 'video',
part: 'id',
q: qVar
});
// Step 6: Execute the API request
request.execute(function(resp) {
console.log(resp);
var vid = document.createElement('vid');
vid.value = resp.items[0].id.videoId;
console.log(vid.value);
var youtube_url = "http://www.youtube.com/watch?v=";
youtube_url += vid.value;
youtube_url += "&rel=0";
window.open(youtube_url);
});
});
}
</script>
<script src="https://apis.google.com/js/client.js?onload=makeApiCall"></script>
</body>
</html>
所以我实际上是想在spotify桌面应用程序中运行这个程序。spotify应用程序系统允许我从";spotify浏览器"以下是我现在遇到的错误:
未捕获类型错误:无法调用未定义的方法"setApiKey">
index.html:63 makeApiCall index.html:63(匿名函数)
client.js?onload=makeApiCall:6-fa-client.js?onload=makeApiCall:1 b
client.js?onload=makeApiCall:6 v.(匿名函数)
client.js?onload=makeApiCall:6H.(匿名函数)
client.js?onload=makeApiCall:6(匿名函数)cb=gap.loaded_0:1
未捕获的TypeError:无法读取未定义的属性"prototype"cb=已加载的缺口_0:6
_.J cb=gap.loaded_0:6(匿名函数)cb=gapp.loaded_1:6(无名函数)client.js?onload=makeApiCall:4 Z
client.js?onload=makeApiCall:6 ua client.js?onload=makeApiCall:4E
client.js?onload=makeApiCall:5b客户端.js?onload=makeApiCall:6
v。(匿名函数)client.js?onload=makeApiCall:6 H.(匿名函数)client.js?onload=makeApiCall:6(匿名函数)cb=开口加载_1:1
看起来您的嵌套操作可能不正确;您在gap.client.load函数的回调之外运行request.execute调用,因此实际的请求本身在尝试运行时不会创建(gap客户端异步加载API)。如果你尝试了这个:
function makeApiCall() {
// Step 4: Load the Google+ API
gapi.client.load('youtube', 'v3', function() {
console.log('youtube API loaded...');
// Step 5: Assemble the API request
var qVar = "Kanye West Amazing"
// changed. added: type
var request = gapi.client.youtube.search.list({
type: 'video',
part: 'id',
q: qVar
});
// Step 6: Execute the API request
request.execute(function(resp) {
document.getElementById('vid').value = resp.items[1].id.videoId;
console.log('saved video id successfully');
});
});
}
然后它应该等待,并且只有在加载API代码之后才执行请求。当然,这也假设您有一个id为"vid"的元素(您的示例代码没有)。
就作用域而言,这个特定调用不需要它们,因为它不需要身份验证(即,您可以在没有授权的情况下运行MakeApiCall())。然而,如果你以后要做其他需要授权的事情,它运行正常,所以你可以很容易地把它留在里面