-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
34 lines (30 loc) · 876 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var request = require('request');
function gerarDanfe(xml, callback) {
var req = request.defaults({ jar: true });
req({
method: 'POST',
url: 'https://www.webdanfe.com.br/danfe/GeraDanfe.php',
headers: {
'accept-encoding': 'gzip, deflate',
'cache-control': 'no-cache',
'Referer': 'http://webdanfe.com.br/danfe/index.html',
},
followAllRedirects: true,
encoding: 'binary',
formData: {
arquivoXml: {
value: xml,
options: {
filename: 'arquivo.xml',
contentType: 'text/xml'
}
}
}
}, function(err, res, body) {
if(err) {
return callback(err);
}
callback(null, body);
});
};
module.exports.gerarDanfe = gerarDanfe;