mahnunchik / vkminiapps-sign

Module to verify signature in VK Mini Apps

Repository from Github https://github.commahnunchik/vkminiapps-signRepository from Github https://github.commahnunchik/vkminiapps-sign

vkminiapps-sign

Module to verify signature in VK Mini Apps.

Usage

Koa.js example usage:

import signature from 'vkminiapps-sign';

const VK_SECRET = '...';

app.use(async (ctx, next) => {
  if (!signature(VK_SECRET, ctx.query)) {
    ctx.throw(400, 'VK signature not match');
  }
  await next();
});

About

Module to verify signature in VK Mini Apps


Languages

Language:JavaScript 100.0%