We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb48db commit 5212ba0Copy full SHA for 5212ba0
1 file changed
src/Classes/PoEAPI.lua
@@ -70,7 +70,7 @@ function PoEAPIClass:FetchAuthToken(callback)
70
71
local authUrl = string.format(
72
"https://www.pathofexile.com/oauth/authorize?client_id=pob&response_type=code&scope=%s&state=%s&code_challenge=%s&code_challenge_method=S256"
73
- ,table.concat(scopesOAuth, " ")
+ ,table.concat(scopesOAuth, "%20")
74
,initialState
75
,code_challenge
76
)
@@ -188,4 +188,4 @@ end
188
---@param callback function callback(response, errorMsg, updateSettings)
189
function PoEAPIClass:DownloadCharacter(realm, name, callback)
190
self:DownloadWithRateLimit("character-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm) .. "/" .. name, callback)
191
-end
+end
0 commit comments