2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-07-31 13:26:23 -07:00
|
|
|
|
2020-08-03 01:06:46 -07:00
|
|
|
export class PhilipsHueOAuth2Api implements ICredentialType {
|
|
|
|
name = 'philipsHueOAuth2Api';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-07-24 08:36:17 -07:00
|
|
|
extends = ['oAuth2Api'];
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-07-31 13:26:23 -07:00
|
|
|
displayName = 'PhilipHue OAuth2 API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'philipsHue';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2022-06-13 22:27:19 -07:00
|
|
|
{
|
|
|
|
displayName: 'Grant Type',
|
|
|
|
name: 'grantType',
|
|
|
|
type: 'hidden',
|
|
|
|
default: 'authorizationCode',
|
|
|
|
},
|
2020-09-13 23:11:14 -07:00
|
|
|
{
|
|
|
|
displayName: 'APP ID',
|
|
|
|
name: 'appId',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-09-13 23:11:14 -07:00
|
|
|
default: '',
|
|
|
|
},
|
2020-07-31 13:26:23 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2022-01-12 22:51:58 -08:00
|
|
|
default: 'https://api.meethue.com/v2/oauth2/authorize',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2022-01-12 22:51:58 -08:00
|
|
|
default: 'https://api.meethue.com/v2/oauth2/token',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2021-01-27 00:02:20 -08:00
|
|
|
default: '={{"appid="+$self["appId"]}}',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-07-31 13:26:23 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2020-09-13 23:11:14 -07:00
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-09-13 23:11:14 -07:00
|
|
|
default: 'header',
|
|
|
|
},
|
2020-07-31 13:26:23 -07:00
|
|
|
];
|
|
|
|
}
|