0
私の$http
AngularJSのYouTube APIへのリクエストにより、400エラーが発生します。私はAPIのためのすべての要件を配置しているようだ。
angular.module('video-player')
.service('youTube', function ($http) {
this.search = (options) => {
$http.get('https://www.googleapis.com/youtube/v3/search', {
part: 'snippet',
key: myKey,
maxResults: options.max,
q: options.query,
videoEmbeddable: 'true',
type: 'video'
}).then(function (response) {
console.log('success');
}, function (response) {
console.log('failed');
});
}
});
オプション:
var defaultSearch = {
key: myKey,
max: 5,
query: 'kitten'
};
youTube.search(defaultSearch);