Skip to content
View daaru00's full-sized avatar
🐢
🐢
Block or Report

Block or report daaru00

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
daaru00/README.md

Pinned

  1. Lambda authorizer to check OAuth2 au... Lambda authorizer to check OAuth2 authorization token
    1
    const https = require('https');
    2
    const jose = require('node-jose');
    3
    
                  
    4
    const region = process.env.COGNITO_REGION;
    5
    const userpool_id = process.env.COGNITO_USER_POOL_ID;
  2. DynamoDB model helper (with promise ... DynamoDB model helper (with promise wrapper)
    1
    const DynamoDB = require('aws-sdk/clients/dynamodb')
    2
    const documentClient = new DynamoDB.DocumentClient({
    3
      apiVersion: '2012-08-10',
    4
      // logger: console
    5
    })