如何将Api密钥及其密钥值添加为授权标头

问题描述 投票:0回答:1

[在邮递员中,他们的类型授权为Api Key,它给出了三个参数,KeyValueAdd to

我已设置Key to SECRET_KEYVALUE to sdsfdsfsdf3343Add to: Headers

这在我的后端成功地工作了,我可以得到他们的价值。

我将如何将此Api密钥设置为我的应用程序的标头,如何在javascript react-native应用程序中使用键值添加授权标头

react-native header authorization api-key
1个回答
1
投票

您的意思是这样的吗?

fetch('https://mywebsite.com/endpoint/', {
  method: 'POST',
  headers: {
    Accept: 'application/json',
    'Content-Type': 'application/json',
    Key: 'sdsfdsfsdf3343' <------------ Put your key here?
  },
  body: JSON.stringify({
    firstParam: 'yourValue',
    secondParam: 'yourOtherValue',
  }),
});
© www.soinside.com 2019 - 2024. All rights reserved.