Для этого есть несколько очень удобных инструментов, посмотрите https://curl.trillworks.com/#node, он преобразует запросы curl в код в Node.js, Python, Go и т. Д.
Я изменил ваш запрос curlнемного:
curl -v -X POST "https://us-extract.api.smartystreets.com/?auth-id=AUTH_ID&auth-token=AUTH_TOKEN" -H "content-type: application/json" --data-binary "1600 Amphitheatre Parkway,Mountain View, CA 94043"
(обратите внимание, что я отредактировал ваш идентификатор авторизации и токен, мы не можем использовать эти другие люди ..: -))
В вашемВ примере вывод будет выглядеть как показано ниже, обратите внимание, что здесь используется библиотека request . Вам нужно будет выполнить запрос установки npm, чтобы добавить это в ваш проект.
var request = require('request');
// Put your auth id and token here.
const AUTH_ID = "";
const AUTH_TOKEN = "";
var headers = {
'content-type': 'application/json'
};
var dataString = '1600 Amphitheatre Parkway,Mountain View, CA 94043';
var options = {
url: 'https://us-extract.api.smartystreets.com/?auth-id=' + AUTH_ID + '&auth-token=' + AUTH_TOKEN,
method: 'POST',
headers: headers,
body: dataString,
json: true // Set this to parse the response to an object.
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body);
// Log the API output.
(body.addresses || []).forEach((element, index) => {
console.log(`api_output (address #${index+1}):`, element.api_output);
});
}
}
request(options, callback);