n8n-nodes-base
Version:
Base nodes of n8n
52 lines • 1.51 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineNotifyOAuth2Api = void 0;
class LineNotifyOAuth2Api {
name = 'lineNotifyOAuth2Api';
extends = ['oAuth2Api'];
displayName = 'Line Notify OAuth2 API';
documentationUrl = 'line';
properties = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://notify-bot.line.me/oauth/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://notify-bot.line.me/oauth/token',
required: true,
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: 'notify',
required: true,
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'body',
},
];
}
exports.LineNotifyOAuth2Api = LineNotifyOAuth2Api;
//# sourceMappingURL=LineNotifyOAuth2Api.credentials.js.map