-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
20 lines (20 loc) · 857 Bytes
/
constants.js
File metadata and controls
20 lines (20 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = Object.freeze({
loginURL: "https://www.epicgames.com/id/login",
authorizationCodeURL: "https://www.epicgames.com/id/api/redirect",
oauthTokenURL : "https://account-public-service-prod.ol.epicgames.com/account/api/oauth/token",
ANDROID_GRANT: {
clientId: "3f69e56c7649492c8cc29f1af08a8a12",
secret: "b51ee9cb12234f50a69efa67ef53812e",
redirectUrl: "com.epicgames.fortnite://fnauth"
},
PC_GRANT: {
clientId: "ec684b8c687f479fadea3cb2ad83f5c6",
secret: "e1f31c211f28413186262d37a13fc84d",
redirectUrl: "https://accounts.epicgames.com/fnauth"
},
'launcherAppClient2': {
clientId: "34a02cf8f4414e29b15921876da36f9a",
secret: "daafbccc737745039dffe53d94fc76cf",
redirectUrl: "https://localhost/launcher/authorized"
}
})