Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
export const credentials = {
|
|
microsoftSharePointOAuth2Api: {
|
|
grantType: 'authorizationCode',
|
|
authUrl: 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize',
|
|
accessTokenUrl: 'https://login.microsoftonline.com/common/oauth2/v2.0/token',
|
|
clientId: 'CLIENT_ID',
|
|
clientSecret: 'CLIENT_SECRET',
|
|
scope: 'openid offline_access https://mydomain.sharepoint.com/.default',
|
|
authQueryParameters: 'response_mode=query',
|
|
authentication: 'body',
|
|
oauthTokenData: {
|
|
token_type: 'Bearer',
|
|
scope:
|
|
'https://mydomain.sharepoint.com/Sites.Manage.All https://mydomain.sharepoint.com/Sites.Read.All https://mydomain.sharepoint.com/Sites.ReadWrite.All https://mydomain.sharepoint.com/Sites.Selected https://mydomain.sharepoint.com/User.Read https://mydomain.sharepoint.com/.default',
|
|
expires_in: 4763,
|
|
ext_expires_in: 4763,
|
|
access_token: 'ACCESSTOKEN',
|
|
refresh_token: 'REFRESHTOKEN',
|
|
id_token: 'IDTOKEN',
|
|
callbackQueryString: {
|
|
session_state: 'SESSIONSTATE',
|
|
},
|
|
},
|
|
subdomain: 'mydomain',
|
|
baseUrl: 'https://mydomain.sharepoint.com/_api/v2.0',
|
|
},
|
|
};
|