The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/app/apple/lib/config.ts

12 lines
378 B

import type { OauthConfig } from '@rocket.chat/core-typings';
export const config = {
serverURL: 'https://appleid.apple.com',
authorizePath: '/auth/authorize?response_mode=form_post',
responseType: 'code id_token',
tokenPath: '/auth/token',
scope: 'name email',
mergeUsers: true,
accessTokenParam: 'access_token',
loginStyle: 'popup',
} as const satisfies OauthConfig;