0
node-fetchでBasicAuthする
2021-06-22

auth用の文字列の生成

今どきはnew Bufferではないらしい

次のようなWarningが出力される

(node:22161) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `node --trace-deprecation ...` to show where the warning was created)

ということで下記のように認証用の文字列を生成する

const buffer = Buffer.from(`username:token`);
const authString = buffer.toString('base64');

リクエスト

const request = async () => {
  const res = await fetch(`https://example.com`, {
    method: 'GET',
    headers: {
      'Accept': 'application/json',
      'Authorization': `Basic ${authString}`
    }
  });

  return await res.json();
}

(async () => {
  const json = request();
  console.log(json);
})();

headersのAuthorizationにユーザー名とTOKENやパスワードを:でつなげbase64した文字列を入れる

それだけ

0

Profile

swfz
swfz
日々学んだことを残していく
Today I Learned
コード片置き場

Account

RSS

Powered by Pixela
© 2024. swfz