FacePlusPlus," error_message":" MISSING_ARGUMENTS:api_key",带有React Native fetch请求

时间:2018-02-06 21:31:57

标签: react-native fetch api-key

我很反应原生,我尝试使用FacePlusPlus API(https://console.faceplusplus.com/documents/5679127)进行测试。

在这里,我尝试过把#api_key'然而,在身体中,我也试过把它放在标题中。两者都没有效果。

componentDidMount() {
    var url = 'https://api-us.faceplusplus.com/facepp/v3/detect';

    return fetch(url, {
      method: 'POST',
      headers: {
        Accept: 'application/json',
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        api_key: 'blahblahblah',
        api_secret: 'blahblahblah',
      })
    })
    .then((response) => response.json())
    .then((responseJson) => {
      this.setState({
        isLoading: false,
        data: responseJson,
      }, function() {
        // do something with new state
      });
    })
    .catch((error) => {
      console.error(error);
    });
  }

在render()中,我把console.log(this.state.data)放在哪里,数据是一个数组来查看响应,但是我不断得到的是

Object {
   "error_message": "MISSING_ARGUMENTS: api_key",
} 

1 个答案:

答案 0 :(得分:0)

要解决此问题,您必须将Content-Type标头设置为'application / x-www-form-urlencoded' 并将您的参数作为formData传递。 我使用“ request” npm包来放置示例。

 const request = require('request');

 request.post({url:'https://api-us.faceplusplus.com/facepp/v3/compare', formData: {
   api_key: 'your api key',
   api_secret: 'your api secret',
   image_url1: 'https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/George_Lucas_cropped_2009.jpg/220px-George_Lucas_cropped_2009.jpg',
   image_url2: 'https://imgix.bustle.com/uploads/getty/2018/6/13/e4c5921d-3e23-4f13-87fe-0180005d0ace-getty-929360234.jpg?w=970&h=582&fit=crop&crop=faces&auto=format&q=70'
 }}, (err, httpResponse, body) => {
   if (err) {
     return console.error('error', err);
   }
   console.log('success ', JSON.parse(body));
 });