mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
const scopes = [
|
||
|
'identity',
|
||
|
'edit',
|
||
|
'history',
|
||
|
'mysubreddits',
|
||
|
'read',
|
||
|
'save',
|
||
|
'submit',
|
||
|
];
|
||
|
|
||
|
// https://github.com/reddit-archive/reddit/wiki/OAuth2
|
||
|
|
||
|
export class RedditOAuth2Api implements ICredentialType {
|
||
|
name = 'redditOAuth2Api';
|
||
|
extends = [
|
||
|
'oAuth2Api',
|
||
|
];
|
||
|
displayName = 'Reddit OAuth2 API';
|
||
|
documentationUrl = 'reddit';
|
||
|
properties = [
|
||
|
{
|
||
|
displayName: 'Auth URI Query Parameters',
|
||
|
name: 'authQueryParameters',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'response_type=code',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Auth URI Query Parameters',
|
||
|
name: 'authQueryParameters',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'grant_type=authorization_code',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Auth URI Query Parameters',
|
||
|
name: 'authQueryParameters',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'duration=permanent',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Authorization URL',
|
||
|
name: 'authUrl',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'https://www.reddit.com/api/v1/authorize',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Access Token URL',
|
||
|
name: 'accessTokenUrl',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'https://www.reddit.com/api/v1/access_token',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Scope',
|
||
|
name: 'scope',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: scopes.join(' '),
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Authentication',
|
||
|
name: 'authentication',
|
||
|
type: 'hidden' as NodePropertyTypes,
|
||
|
default: 'header',
|
||
|
},
|
||
|
];
|
||
|
}
|