flowroute apiを使用していて、データを取得する必要がありますが、認証資格情報を追加する方法がわかりません。つまり、ブラウザーでクエリ URL を渡すと確認できます。javascript でそれを渡すにはどうすればよいですか。私はwixプラットフォームを使用しており、以下に示すようにJavaScriptコードを追加しています
// For full API documentation, including code examples, visit http://wix.to/94BuAAs
import {fetch} from 'wix-fetch';
$w.onReady(function () {
fetch('https://api.flowroute.com/v2/numbers/available?starts_with=800&limit=3?',{method: 'get',auth:{user:'28288282', pass:'099299292991'}})
.then( (httpResponse) => {
console.log(httpResponse.ok);
if (httpResponse.ok) {
return httpResponse.json();
} else {
return Promise.reject("Fetch did not succeed");
}
} )
.then(json => console.log(json))
.catch(err => console.log(err));
//TODO: write your page related code here...
});
現在の401 Unauthorized 応答ステータスの代わりに json 応答を取得できるように、ユーザー名とパスワードを API に渡す正しい方法は何ですか?
https://api.flowroute.com/v2/numbers/available?starts_with=800&limit=3
私の回答を更新して、スクリーンショットの bwlow に示されているように、Network Call Details Request & Response ヘッダー ae を表示します