This script just hits the Path of Exile public API and outputs some selected information on the characters specified.
Create a configuration file in the same directory as the main script by making a copy of config.example.js
and naming it config.js
. Read the example configuration for details on the requirements.
I wrote it to be run through Node like so:
node poe-checker.js
You should get output like the following:
Account1:
CharacterA (Necromancer 49)
Account2:
CharacterB (Shadow 39)
Account3:
CharacterC (Templar 39)
CharacterD (Scion 27)
Account4:
Couldn't read characters: 403 Forbidden
If the API returns 403, that is generally because the account hasn't set its character information to be public (it is private by default). This can be changed by logging in to the Path of Exile website and adjusting the privacy settings.
If you get the following error:
Error: Cannot find module './config'
You need to create a configuration file config.js
in the same directory as the main script. Open and read config.example.js
; you can use it as a base for your personal configuration.