как мне ударить это в почтальоне - PullRequest
0 голосов
/ 01 июня 2019

Я написал этот код в узле, но не смог получить ответ от почтальона, пожалуйста, дайте мне знать, как использовать этот вид API в почтальоне. Также подтвердите мне его правильный код или нет

  router.post('/proxy', function (req,res){
      let indicator = String(req.body.indicator);
      let indicator = "dashboardapi";

      if(indicator === "dashboardapi"){
        let url = "https://scripts.digiebot.com/admin/api/dashboard_api";
        let header_json = {
          'Content-Type':  'application/json',
          'Authorization': 'Basic ZGl--example--Q='
        };
        let body_json = {
          "symbol" : "TRXBTC"
        };
        // request.post({url, function(err,httpResponse,body)
        request.post(url,header_json, body_json, function (error, response, 
         body) {
        console.log('error:', error); // Print the error if one occurred
        console.log('statusCode:', response && response.statusCode); // 
         Print the response status code if a response was received
        console.log('body:', body); // Print the HTML for the Google 
         homepage.
        res.send("api hit")
    });
      }
    }
    );
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...