interim fix: fallback to module-level key
This commit is contained in:
parent
4ae6942486
commit
2a28dca257
|
@ -85,11 +85,11 @@ if ('undefined' !== typeof fetch) {
|
|||
common._sign = function (opts) {
|
||||
var p;
|
||||
if ('POST' === opts.method || opts.json) {
|
||||
p = Keypairs.signJws({ jwk: opts.key, payload: opts.json || {} }).then(function (jws) {
|
||||
p = Keypairs.signJws({ jwk: opts.key || common._key, payload: opts.json || {} }).then(function (jws) {
|
||||
opts.json = jws;
|
||||
});
|
||||
} else {
|
||||
p = Keypairs.signJwt({ jwk: opts.key , claims: { iss: false, exp: '60s' } }).then(function (jwt) {
|
||||
p = Keypairs.signJwt({ jwk: opts.key || common._key, claims: { iss: false, exp: '60s' } }).then(function (jwt) {
|
||||
if (!opts.headers) { opts.headers = {}; }
|
||||
opts.headers.Authorization = 'Bearer ' + jwt;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue