feat: add support for Palworld (#495)

* Added Palworld

* Tidy up

* Improve variable wording for Epic auth
This commit is contained in:
Jonathan Lambert 2024-01-20 22:36:05 +00:00 committed by GitHub
parent cbf66e127c
commit 96e2054a04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 81 additions and 5 deletions

13
protocols/palworld.js Normal file
View file

@ -0,0 +1,13 @@
import Epic from './epic.js'
export default class palworld extends Epic {
constructor () {
super()
// OAuth2 credentials extracted from Palworld files.
this.clientId = 'xyza78916PZ5DF0fAahu4tnrKKyFpqRE'
this.clientSecret = 'j0NapLEPm3R3EOrlQiM8cRLKq3Rt02ZVVwT0SkZstSg'
this.deploymentId = '0a18471f93d448e2a1f60e47e03d3413'
this.authByExternalToken = true
}
}