Auth0 Extension Tools for Amazon S3
A set of tools and utilities to simplify the development of Auth0 Extensions with Amazon S3. This can be used in combination with a BlobRecordProvider.
Usage
const tools = ;
Read from S3.
Read a file from Amazon S3:
const ctx = path: '/foo.json' bucket: 'myBucket' keyId: 'myKey' keySecret: 'mySecret' defaultData: foo: 'bar' ;ctx ;
Write to S3.
Write a file to Amazon S3:
const ctx = path: '/foo.json' bucket: 'myBucket' keyId: 'myKey' keySecret: 'mySecret' defaultData: foo: 'bar' ;ctx ;