node-nlp
Version:
Library for NLU (Natural Language Understanding) done in Node.js
34 lines (29 loc) • 1.05 kB
text/typescript
/**
* @module botbuilder
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export module GovernmentConstants {
/**
* Government Channel Service property value
*/
export const ChannelService: string = 'https://botframework.azure.us';
/**
* TO CHANNEL FROM BOT: Login URL
*/
export const ToChannelFromBotLoginUrl: string = 'https://login.microsoftonline.us/cab8a31a-1906-4287-a0d8-4eef66b95f6e/oauth2/v2.0/token';
/**
* TO CHANNEL FROM BOT: OAuth scope to request
*/
export const ToChannelFromBotOAuthScope: string = 'https://api.botframework.us/.default';
/**
* TO BOT FROM CHANNEL: Token issuer
*/
export const ToBotFromChannelTokenIssuer : string = 'https://api.botframework.us';
/**
* TO BOT FROM CHANNEL: OpenID metadata document for tokens coming from MSA
*/
export const ToBotFromChannelOpenIdMetadataUrl: string = 'https://login.botframework.azure.us/v1/.well-known/openidconfiguration';
}