Я получил сообщение об ошибке Адрес получателя требуется с Gmail API - PullRequest
1 голос
/ 03 мая 2019

Я хочу отправить электронное письмо с Gmail API.

В документе говорится, что API Gmail требуется строка в формате RFC2822 и строка в кодировке base64.
Поэтому я пишу содержимое электронной почты и передаю его в raw-свойство.
Но я получил ошибку: Recipient address required.

Как я могу это исправить?

Вот мой код.

const fs = require('fs');
const readline = require('readline');
const {google} = require('googleapis');

// If modifying these scopes, delete token.json.
const SCOPES = ['https://www.googleapis.com/auth/gmail.send'];
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
const TOKEN_PATH = 'token.json';

// 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 Gmail API.
  authorize(JSON.parse(content), sendGmail);
});

/**
 * Create an OAuth2 client with the given credentials, and then execute the
 * given callback function.
 * @param {Object} credentials The authorization client credentials.
 * @param {function} callback The callback to call with the authorized client.
 */
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 getNewToken(oAuth2Client, callback);
    oAuth2Client.setCredentials(JSON.parse(token));
    callback(oAuth2Client);
  });
}

/**
 * Get and store new token after prompting for user authorization, and then
 * execute the given callback with the authorized OAuth2 client.
 * @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for.
 * @param {getEventsCallback} callback The callback for the authorized client.
 */
function getNewToken(oAuth2Client, callback) {
  const authUrl = oAuth2Client.generateAuthUrl({
    access_type: 'offline',
    scope: SCOPES,
  });
  console.log('Authorize this app by visiting this url:', authUrl);
  const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
  });
  rl.question('Enter the code from that page here: ', (code) => {
    rl.close();
    oAuth2Client.getToken(code, (err, token) => {
      if (err) return console.error('Error retrieving access token', err);
      oAuth2Client.setCredentials(token);
      // Store the token to disk for later program executions
      fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
        if (err) return console.error(err);
        console.log('Token stored to', TOKEN_PATH);
      });
      callback(oAuth2Client);
    });
  });
}

function sendGmail(auth){
  const makeBody = (params) => {
      params.subject = new Buffer.from(params.subject).toString("base64");
      const str = [
          'Content-Type: text/plain; charset=\"UTF-8\"\n',
          'MINE-Version: 1.0\n',
          'Content-Transfer-Encoding: 7bit\n',
          `to: ${params.to} \n`,
          `from: ${params.from} \n`,
          `subject: =?UTF-8?B?${params.subject}?= \n\n`,
          params.message
      ].join(' ');
      return new Buffer.from(str).toString('base64').replace(/\+/g,'-').replace(/\//g,'_');
  }

  const messageBody = `
  this is a test message
  `;

  const raw = makeBody({
      to : 'foo@gmail.com',
      from : 'foo@gmail.com',
      subject : 'test title',
      message:messageBody
  });
jj

  const gmail = google.gmail({version:'v1',auth:auth});
  gmail.users.messages.send({
      userId:"me",
      resource:{
          raw:raw
      }
  }).then(res => {
    console.log(res);
  });
}

resulr:

Error: Recipient address required

edit: показать весь код.Этот код все еще получает ту же ошибку.

Это почти пример Google, и я думаю, что ошибка в моем коде.
Я добавляю метод sendGnail и редактирую authorize(JSON.parse(content), listLabels); в authorize(JSON.parse(content), sendGmail);, меняю SCOPES и удаляю метод listLabels.
(listLabelsметод работал нормально.)
После выполнения метода listLabels я изменяю SCOPES и заново создаю token.json.
После получения Labels я изменяю

Вот пример https://developers.google.com/gmail/api/quickstart/nodejs?hl=ja

1 Ответ

1 голос
/ 03 мая 2019

Как насчет этой модификации?

От:

].join(' ');

До:

].join('');

Примечание:

  • Я думаю, чтоскрипт будет работать по вышеуказанной модификации.Но в качестве еще одной точки модификации, как насчет изменения с 'Content-Type: text/plain; charaset=\"UTF-8\"\n', на 'Content-Type: text/plain; charset=\"UTF-8\"\n',?

Если это не было прямым решением, я прошу прощения.

Редактировать:

Я изменил функцию sendGmail в вашем скрипте.

Изменен скрипт:

function sendGmail(auth) {
  const makeBody = params => {
    params.subject = new Buffer.from(params.subject).toString("base64");
    const str = [
      'Content-Type: text/plain; charset="UTF-8"\n',
      "MINE-Version: 1.0\n",
      "Content-Transfer-Encoding: 7bit\n",
      `to: ${params.to} \n`,
      `from: ${params.from} \n`,
      `subject: =?UTF-8?B?${params.subject}?= \n\n`,
      params.message
    ].join(""); // <--- Modified
    return new Buffer.from(str)
      .toString("base64")
      .replace(/\+/g, "-")
      .replace(/\//g, "_");
  };

  const messageBody = `
  this is a test message
  `;

  const raw = makeBody({
    to: "foo@gmail.com",
    from: "foo@gmail.com",
    subject: "test title",
    message: messageBody
  });

  const gmail = google.gmail({ version: "v1", auth: auth });
  gmail.users.messages.send(
    {
      userId: "me",
      resource: {
        raw: raw
      }
    },
    (err, res) => { // Modified
      if (err) {
        console.log(err);
        return;
      }
      console.log(res.data);
    }
  );
}
...