This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "RawAppManifestAnyVersion", | |
"description": "Container for any version of the manifest.", | |
"oneOf": [ | |
{ | |
"description": "A manifest with API version 1.", | |
"type": "object", | |
"required": [ | |
"component", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require("axios"); | |
const { JwtGenerator } = require("virgil-sdk"); | |
const { VirgilCrypto, VirgilAccessTokenSigner } = require("virgil-crypto"); | |
const crypto = new VirgilCrypto(); | |
const APP_ID = "YOUR_VIRGIL_APP_ID"; | |
const APP_KEY = "YOUR_VIRGIL_APP_KEY"; | |
const APP_KEY_ID = "YOUR_VIRGIL_APP_ID"; | |
const PARSE_APP_ID = "YOUR_PARSE_APP_ID"; | |
const PARSE_REST_API_KEY = "YOUR_PARSE_REST_API_KEY"; |