在React Native中发送安全的REST API请求

时间:2019-01-04 12:56:53

标签: react-native

  • 我正在使用React Native的'fetch'方法来调用REST API。我们如何将请求发送到React native中的安全API(URL以“ https”开头)?

1 个答案:

答案 0 :(得分:0)

尝试一下

参数

var params = 'user_id=' + res.user_id
params += '&first_name=' + firstName

请求

内容类型-根据您的要求设置

fetch(url, {
      method: 'POST',
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
         'Authorization': token,
      },
      body: params 
  })
  .then((res) => res.json())
  .then((json) => {
     console.log("RESPONSE:- ", json)
  })
  .catch((err) => {
     console.log("ERROR WEB:- ", err)
  })