在哪里可以找到 Google API 客户的 credentials.json?

Where to find credentials.json for Google API client?

Google 日历 Node.js 示例需要一个名为 "credentials.json" 的文件:https://developers.google.com/calendar/quickstart/nodejs

相关代码:

// Load client secrets from a local file.
fs.readFile('credentials.json', (err, content) => {
  if (err) return console.log('Error loading client secret file:', err);
  // Authorize a client with credentials, then call the Google Calendar API.
  authorize(JSON.parse(content), listEvents);
});
function authorize(credentials, callback) {
  const {client_secret, client_id, redirect_uris} = credentials.installed;
  const oAuth2Client = new google.auth.OAuth2(
      client_id, client_secret, redirect_uris[0]);

  // Check if we have previously stored a token.
  fs.readFile(TOKEN_PATH, (err, token) => {
    if (err) return getAccessToken(oAuth2Client, callback);
    oAuth2Client.setCredentials(JSON.parse(token));
    callback(oAuth2Client);
  });
}

我不知道在哪里可以找到这个文件。 Google API 控制台提供了 "download JSON" 选项,但文件格式不正确并且缺少 redirect_uris 字段。

  • 您想要检索 credentials.json 文件以使用 Google API 快速入门 Node.js。

如果我的理解是正确的,这个答案怎么样?请将此视为几个答案之一。

在此答案中,假设您单击了 "Enable the Google Calendar API" 按钮。

流量:

  1. 当你点击"Enable the Google Calendar API"按钮时,可以看到如下画面。在这里,请点击"API console"。

  2. 点击"API console"后,可以看到如下画面。在这里,请点击"Credentials"。

  3. 点击"Credentials"后,可以看到如下画面。在这里,请点击下载按钮。这样,您就可以检索 JSON 文件。此时请将文件重命名为credentials.json,并放到Node.js.

    快速入门使用路径所在的目录下

注:

  • 如果您需要创建新的云平台项目,this information 可能会有用。

参考文献:

如果我误解了您的问题并且这不是您想要的方向,我深表歉意。