PoE Helper (unofficial chrome extension to help with crafting/inventory)

I too have ran into this, I made sure to log out and log back in to www.pathofexile.com and even went and looked at my own stash, yet it is stuck on LOADING...

Any ideas on how to get around this?
Yep, same here. Been sitting at "Loading" for about an hour now.
I tried logging in and out from the forums, tried reinstalling. Nothing worked.
Same issues, stuck on loading.

I've tried it on a couple different computers. Tried turning off all other extensions, then deleting this extension, then reading it. Still stays on loading.

In dev tools I see the post for Get Characters returns all of my characters
but then there are 3 get items calls that all just return false
Alright, I'm just smart enough at reading code and poking around to make myself look like an idiot.

I think the POST for get items has changed it's signature

This doesn't work
http://www.pathofexile.com/character-window/get-items?character=Sanies

This DOES work
http://www.pathofexile.com/character-window/get-items?character=Sanies&accountName=RAMunch

Looking at the git repo it looks like it's only adding the character name to the post.

postThrottle.queue( function() { return $.post(getEndpoint('get-items'), {character: thisChar}) } )
.done(function(oData){
// add char data to cache
oData.charName = thisChar;
setCache('char-' + thisChar , oData);
deferred.resolve(oData);
})
.fail(function(){
deferred.reject();
return;
})
;

I think accountName needs to be added to that call, but I'm not seeing a way of fetching the account name.

Of course I could just be way off base on all of this :-)

***EDIT***

Okay, my change works, except I hardcoded my accountname into the code to get it to work

var thisAccountName = 'RAMunch'

postThrottle.queue( function() { return $.post(getEndpoint('get-items'), {character: thisChar, accountName: thisAccountName}) } )

I'm poking through chrome dev tools trying to find a service call to get my account name to add to where the cache gets init'd.
Last edited by RAMunch on Jun 22, 2015, 4:05:46 PM
"
RAMunch wrote:
Alright, I'm just smart enough at reading code and poking around to make myself look like an idiot.

I think the POST for get items has changed it's signature

This doesn't work
http://www.pathofexile.com/character-window/get-items?character=Sanies

This DOES work
http://www.pathofexile.com/character-window/get-items?character=Sanies&accountName=RAMunch

Looking at the git repo it looks like it's only adding the character name to the post.

postThrottle.queue( function() { return $.post(getEndpoint('get-items'), {character: thisChar}) } )
.done(function(oData){
// add char data to cache
oData.charName = thisChar;
setCache('char-' + thisChar , oData);
deferred.resolve(oData);
})
.fail(function(){
deferred.reject();
return;
})
;

I think accountName needs to be added to that call, but I'm not seeing a way of fetching the account name.

Of course I could just be way off base on all of this :-)

***EDIT***

Okay, my change works, except I hardcoded my accountname into the code to get it to work

var thisAccountName = 'RAMunch'

postThrottle.queue( function() { return $.post(getEndpoint('get-items'), {character: thisChar, accountName: thisAccountName}) } )

I'm poking through chrome dev tools trying to find a service call to get my account name to add to where the cache gets init'd.


I tried this and it still didn't work for me :\ Is there any other code that you changed?
◄ IGN: Slayer_of_Monkeys ►
◄ YouTube: http://goo.gl/QYWGL7 ►
◄ PlaysTV: http://goo.gl/zutTCE ►
◄ Basics & Mechanics Guide: http://goo.gl/AZnGQp ►
◄ Steam: http://goo.gl/XfFxxN ►
With Chrome Version 43.0.2357.130, extension auto disable because it didn't listed on Chrome Web Store.
My heart's not cold, it's broken :)
SolomonT shop: /1389867
looks like latest chrome doesn't support the way the XHR requests are being made anymore. might be about time to consider this thing dead.
Chrome plugin for inventory/crafting: http://njs50.github.com/poe_ext/
fwiw, i did a POC of a cross browser version ages ago that could be loaded by injecting the javascript into the page (either via console or through the address bar if the browser supported it).

nfi what i did with the code, but this thing would probably work that way. getting the account name would be fairly trivial since it's up the top of the screen there. ^^

of course there are still no item levels in the data, so that issue is not going to be solved anytime soon.

anyways, i've had a look and it doesn't look like any quick fixes this time :-/
Chrome plugin for inventory/crafting: http://njs50.github.com/poe_ext/
I was trying to see if I could remember what this game was about this afternoon and decided I might as well update this piece of junk so that it works again.

I refactored it into an actual chrome extension and even uploaded it into the webstore.

here's a link for anyone who is still interested:

https://chrome.google.com/webstore/detail/path-of-exile-inventory-h/ieeefjeclfcfjfigjilfklgkdinkmeln

enjoy
Chrome plugin for inventory/crafting: http://njs50.github.com/poe_ext/
oops, should probably mention that if you install that chrome extension it adds a stash management link in the "home" menu on the path of exile site to run the helper.

Chrome plugin for inventory/crafting: http://njs50.github.com/poe_ext/

Report Forum Post

Report Account:

Report Type

Additional Info