mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
d317e09c59
Github issue / Community forum post (link here to close automatically):
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class TwitterOAuth1Api implements ICredentialType {
|
|
name = 'twitterOAuth1Api';
|
|
|
|
extends = ['oAuth1Api'];
|
|
|
|
displayName = 'X OAuth API';
|
|
|
|
documentationUrl = 'twitter';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Request Token URL',
|
|
name: 'requestTokenUrl',
|
|
type: 'hidden',
|
|
default: 'https://api.twitter.com/oauth/request_token',
|
|
},
|
|
{
|
|
displayName: 'Authorization URL',
|
|
name: 'authUrl',
|
|
type: 'hidden',
|
|
default: 'https://api.twitter.com/oauth/authorize',
|
|
},
|
|
{
|
|
displayName: 'Access Token URL',
|
|
name: 'accessTokenUrl',
|
|
type: 'hidden',
|
|
default: 'https://api.twitter.com/oauth/access_token',
|
|
},
|
|
{
|
|
displayName: 'Signature Method',
|
|
name: 'signatureMethod',
|
|
type: 'hidden',
|
|
default: 'HMAC-SHA1',
|
|
},
|
|
{
|
|
displayName:
|
|
'Some operations requires a Basic or a Pro API for more informations see <a href="https://developer.twitter.com/en/products/twitter-api" target="_blank">X API Docs</a>',
|
|
name: 'apiPermissioms',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|