HTTP Signature検証対象ヘッダにDateが含まれてなくても許容する

This commit is contained in:
mei23 2018-08-25 13:40:12 +09:00
parent 92828028db
commit b3a3238e43
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ function inbox(ctx: Router.IRouterContext) {
ctx.req.headers.authorization = 'Signature ' + ctx.req.headers.signature;
try {
signature = httpSignature.parseRequest(ctx.req);
signature = httpSignature.parseRequest(ctx.req, { 'headers': [] });
} catch (e) {
ctx.status = 401;
return;