Open vietknight opened 4 hours ago
Same here.
If you open the console (ctrl
+ ~
), you should see a 403 response code, this is a known issue and is being looked into.
I did some poking around and the issue is here: https://github.com/PathOfBuildingCommunity/PathOfBuilding/blob/dev/src/Classes/ImportTab.lua#L452
local realAccountName = response.body:match("/view%-profile/([^/]+)/characters"):gsub(".", function(c) if c:byte(1) > 127 then return string.format("%%%2X",c:byte(1)) else return c end end)
returns <account name>-<discrim>
, which later gets passed to /get-passive-skills
and /get-items
that causes the issue. A quick dirty hack of adding realAccountName = realAccountName:gsub("-", "%%23")
fixes the issue locally for me.
Note that it's the POE site that is introducing the -
in <account name>-<discrim>
, POB is just a victim here :'(
--
Somewhat tangential, I think support should be added to automatically urlencode the "#" to %23. Much more UX friendly to be able to enter myaccount#1234 instead of myaccount%231234
Same problem here
Also having the same issue here. Was working fine last night.
GGG changed the account system in the patch today. We have it fixed on dev and I'm about to write patch notes with the update coming out within the next hour
Check version
Check for duplicates
What platform are you running Path of Building on?
Windows
How is Path of Building expected to behave?
Import/Export Build -> Type in username -> Start -> Characters should load
How does Path of Building behave?
Import/Export Build -> Type in username -> Start -> 'Account is private'
How to reproduce the issue
Character build code
No response
Screenshots