以下のコードを使用して API からデータを取得していますが、正常に動作します。セキュリティで保護された別の API があり、コンテンツにアクセスするにはユーザー名/パスワードが必要ですが、同形フェッチ モジュールを使用するときに資格情報を渡す方法がわかりません。誰か助けてくれませんか?
私はこのモジュールを使用しています: https://www.npmjs.com/package/isomorphic-fetch
以下のようにユーザー名とパスワードを渡す必要があります (サンプルの curl コマンド)
curl -u admin:hello123 http://test:8765/select?q=*
コード:
fetch(
url
).then(function (response) {
if (response.status != 200) {
dispatch(setError(response.status + '===>' + response.statusText + '===>' + response.url))
}
return response.json();
}).then(function (json) {
dispatch(setData(json, q))
}).catch(function(err){
});