mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
69 lines
2 KiB
TypeScript
69 lines
2 KiB
TypeScript
|
import type { ConnectorMetadata } from '@logto/connector-kit';
|
|||
|
import { ConnectorConfigFormItemType, ConnectorPlatform } from '@logto/connector-kit';
|
|||
|
|
|||
|
export const authorizationEndpoint = 'alipay://'; // This is used to arouse the native Alipay App
|
|||
|
export const alipayEndpoint = 'https://openapi.alipay.com/gateway.do';
|
|||
|
export const methodForAccessToken = 'alipay.system.oauth.token';
|
|||
|
export const methodForUserInfo = 'alipay.user.info.share';
|
|||
|
|
|||
|
export const alipaySigningAlgorithmMapping = {
|
|||
|
RSA: 'RSA-SHA1',
|
|||
|
RSA2: 'RSA-SHA256',
|
|||
|
} as const;
|
|||
|
export const alipaySigningAlgorithms = ['RSA', 'RSA2'] as const;
|
|||
|
|
|||
|
export const invalidAccessTokenCode = ['20001'];
|
|||
|
|
|||
|
export const invalidAccessTokenSubCode = ['isv.code-invalid'];
|
|||
|
|
|||
|
export const defaultMetadata: ConnectorMetadata = {
|
|||
|
id: 'alipay-native',
|
|||
|
target: 'alipay',
|
|||
|
platform: ConnectorPlatform.Native,
|
|||
|
name: {
|
|||
|
en: 'Alipay',
|
|||
|
'zh-CN': '支付宝',
|
|||
|
'tr-TR': 'Alipay',
|
|||
|
ko: 'Alipay',
|
|||
|
},
|
|||
|
logo: './logo.svg',
|
|||
|
logoDark: null,
|
|||
|
description: {
|
|||
|
en: 'Alipay is a third-party mobile and online payment platform.',
|
|||
|
'zh-CN': '支付宝是一个第三方支付平台。',
|
|||
|
'tr-TR': 'Alipay, üçüncü şahıslara ait bir mobil ve çevrimiçi ödeme platformudur.',
|
|||
|
ko: 'Alipay는 서드파티 모바일 및 온라인 결제 플랫폼 입니다.',
|
|||
|
},
|
|||
|
readme: './README.md',
|
|||
|
formItems: [
|
|||
|
{
|
|||
|
key: 'appId',
|
|||
|
label: 'App ID',
|
|||
|
type: ConnectorConfigFormItemType.Text,
|
|||
|
required: true,
|
|||
|
placeholder: '<app-id-with-maximum-length-16>',
|
|||
|
},
|
|||
|
{
|
|||
|
key: 'privateKey',
|
|||
|
label: 'Private Key',
|
|||
|
type: ConnectorConfigFormItemType.MultilineText,
|
|||
|
required: true,
|
|||
|
placeholder: '<private-key>',
|
|||
|
},
|
|||
|
{
|
|||
|
key: 'signType',
|
|||
|
label: 'Signing Algorithm',
|
|||
|
type: ConnectorConfigFormItemType.Select,
|
|||
|
selectItems: [
|
|||
|
{ title: 'RSA-SHA1', value: 'RSA' },
|
|||
|
{ title: 'RSA-SHA256', value: 'RSA2' },
|
|||
|
],
|
|||
|
defaultValue: 'RSA2',
|
|||
|
},
|
|||
|
],
|
|||
|
};
|
|||
|
|
|||
|
export const defaultTimeout = 5000;
|
|||
|
|
|||
|
export const timestampFormat = 'YYYY-MM-DD HH:mm:ss';
|