2
2
Derivar 0

fix POST-as-POST

Este cometimento está contido em:
AJ ONeal 2019-05-28 04:40:59 -06:00
ascendente 6eb325186e
cometimento 67294ae3eb
1 ficheiros modificados com 2 adições e 2 eliminações

Ver ficheiro

@ -2220,12 +2220,12 @@ ACME._postChallenge = function (me, options, auth) {
function respondToChallenge() {
//#console.debug('[acme-v2.js] responding to accept challenge:');
// POST-as-GET
// POST-as-POST (empty JSON object)
return ACME._jwsRequest(me, {
options: options
, url: auth.url
, protected: { kid: options._kid }
, payload: Enc.binToBuf('')
, payload: Enc.binToBuf(JSON.stringify({}))
}).then(function (/*#resp*/) {
//#console.debug('respond to challenge: resp.body:');
//#console.debug(resp.body);