我正在尝试使用以下请求从 Angular 中访问 Google Books API:
https://www.googleapis.com/books/v1/volumes?q=test&key=(my api key)
当我使用 Postman 获取此 URL 时,我收到了正确的数据和 200 响应。当我在 Angular 中执行此操作时,无论我如何尝试,我都会收到 401 Invalid Credentials。
这是我的 Angular 代码:
$http.get('https://www.googleapis.com/books/v1/volumes?q=test&key=(my api key)')
.then(function success(response) {
//
}, function failure(response) {
//
});
谁能告诉我我哪里出错了?