onedrive/config/api.config.js
2022-03-16 16:58:27 +08:00

35 lines
2.2 KiB
JavaScript

/**
* This file contains the configuration for the API endpoints and tokens we use.
*
* - If you are a OneDrive International user, you would not have to change anything here.
* - If you are not the admin of your OneDrive for Business account, you may need to define your own clientId/clientSecret,
* check documentation for more details.
* - If you are using a E5 Subscription OneDrive for Business account, the direct links of your files are not the same here.
* In which case you would need to change directLinkRegex.
*/
module.exports = {
// The clientId and clientSecret are used to authenticate the user with Microsoft Graph API using OAuth. You would
// not need to change anything here if you can authenticate with your personal Microsoft account with OneDrive International.
clientId: 'd87bcc39-1750-4ca0-ad54-f8d0efbb2735',
obfuscatedClientSecret: 'U2FsdGVkX1830zo3/pFDqaBCVBb37iLw3WnBDWGF9GIB2f4apzv0roemp8Y+iIxI3Ih5ecyukqELQEGzZlYiWg==',
// The redirectUri is the URL that the user will be redirected to after they have authenticated with Microsoft Graph API.
// Likewise, you would not need to change redirectUri if you are using your personal Microsoft account with OneDrive International.
redirectUri: 'http://localhost',
// These are the URLs of the OneDrive API endpoints. You would not need to change anything here if you are using OneDrive International
// or E5 Subscription OneDrive for Business. You may need to change these if you are using OneDrive 世纪互联.
authApi: 'https://login.microsoftonline.com/common/oauth2/v2.0/token',
driveApi: 'https://graph.microsoft.com/v1.0/me/drive',
// The scope we require are listed here, in most cases you would not need to change this as well.
scope: 'user.read files.read.all offline_access',
// Cache-Control header, check Vercel documentation for more details. The default settings imply:
// - max-age=0: no cache for your browser
// - s-maxage=0: cache is fresh for 60 seconds on the edge, after which it becomes stale
// - stale-while-revalidate: allow serving stale content while revalidating on the edge
// https://vercel.com/docs/concepts/edge-network/caching
cacheControlHeader: 'max-age=0, s-maxage=60, stale-while-revalidate',
}