2022-05-11 23:17:17 -05:00
|
|
|
import { ConnectorMetadata, ConnectorType, ConnectorPlatform } from '@logto/connector-types';
|
2022-04-26 23:48:42 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Note: If you do not include a version number we will default to the oldest available version, so it's recommended to include the version number in your requests.
|
|
|
|
* https://developers.facebook.com/docs/graph-api/overview#versions
|
|
|
|
*/
|
|
|
|
export const authorizationEndpoint = 'https://www.facebook.com/v13.0/dialog/oauth';
|
|
|
|
export const accessTokenEndpoint = 'https://graph.facebook.com/v13.0/oauth/access_token';
|
|
|
|
/**
|
|
|
|
* Note: The /me node is a special endpoint that translates to the object ID of the person or Page whose access token is currently being used to make the API calls.
|
|
|
|
* https://developers.facebook.com/docs/graph-api/overview#me
|
|
|
|
* https://developers.facebook.com/docs/graph-api/reference/user#Reading
|
|
|
|
*/
|
|
|
|
export const userInfoEndpoint = 'https://graph.facebook.com/v13.0/me';
|
|
|
|
export const scope = 'email,public_profile';
|
|
|
|
|
|
|
|
export const defaultMetadata: ConnectorMetadata = {
|
2022-05-23 22:39:44 -05:00
|
|
|
id: 'facebook-universal',
|
2022-05-11 23:17:17 -05:00
|
|
|
target: 'facebook',
|
2022-04-26 23:48:42 -05:00
|
|
|
type: ConnectorType.Social,
|
2022-05-23 04:54:05 -05:00
|
|
|
platform: ConnectorPlatform.Universal,
|
2022-04-26 23:48:42 -05:00
|
|
|
name: {
|
2022-05-19 04:31:32 -05:00
|
|
|
en: 'Facebook',
|
|
|
|
'zh-CN': 'Facebook',
|
2022-04-26 23:48:42 -05:00
|
|
|
},
|
2022-05-24 00:54:37 -05:00
|
|
|
logo: './logo.svg',
|
2022-06-22 22:12:29 -05:00
|
|
|
logoDark: null,
|
2022-04-26 23:48:42 -05:00
|
|
|
description: {
|
2022-07-03 23:20:28 -05:00
|
|
|
en: 'Facebook is a worldwide social media platform with the most active users.',
|
|
|
|
'zh-CN': 'Facebook 是世界使用人数最多的社交平台。',
|
2022-04-26 23:48:42 -05:00
|
|
|
},
|
2022-06-26 21:00:37 -05:00
|
|
|
readme: './README.md',
|
|
|
|
configTemplate: './docs/config-template.json',
|
2022-04-26 23:48:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export const defaultTimeout = 5000;
|