gpt4 book ai didi

javascript - 尝试访问 Youtube Data Api v3 时出现 `Google Maps API warning: NoApiKeys `

转载 作者:数据小太阳 更新时间:2023-10-29 05:21:57 26 4
gpt4 key购买 nike

我正在学习 Modern Redux With React 教程,并尝试访问 Youtube Data API v3,但在 Chrome 控制台中我收到错误 Google Maps API warning: NoApiKeys。我不确定为什么会收到 Google map 警告,因为我为 Youtube 注册了一个 API key 。

单击转到凭据。

Clicked Go to Credentials.

单击“API key ”。

Clicked "API Key".

点击“浏览器”。

Clicked "Browser".

设置名称并点击创建。

Set name and clicked create.

将 API 复制并粘贴到 JS 文件中。

Copied and pasted API into JS file.

import React, {Component} from 'react';
import * as ReactDOM from "react/lib/ReactDOM";
import YTSearch from 'youtube-api-search';

import SearchBar from './components/search_bar';


const API_KEY = 'AIzaSyD9WN2t4lhIZ5Es34jwaerM98r2nSutLJs';


class App extends Component {

constructor(props) {
super(props);

this.state = {videos: []};

YTSearch({key: API_KEY, term: 'surfboards'}, (videos) => {
console.log(data);
this.setState({videos});
});
}

render() {
return (
<div>
<SearchBar />
</div>
);
}
}

ReactDOM.render(<App />, document.querySelector('.container'));

最佳答案

这是因为您的 index.html 文件中有“maps.googleapis.com/maps/api/js”。注释掉该行以防止谷歌地图在没有 key 的情况下尝试加载

关于javascript - 尝试访问 Youtube Data Api v3 时出现 `Google Maps API warning: NoApiKeys `,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36073924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com