| Author |
Thread Statistics | Show CCP posts - 0 post(s) |

deadmeet
|
Posted - 2008.06.05 16:06:00 -
[1]
can somebody upload somewhere the php class you can find on the eve dev wiki ? the website is down...
|

deadmeet
|
Posted - 2008.06.17 20:50:00 -
[2]
Hi,
It is possible to have an example of code to get the global skilltree ?
This call don't require the userId or APIkey, so there is no need to use the setcredential function I imagine, but not sure.
I would like to see an example of that please.
thanks in advance.
|

deadmeet
|
Posted - 2008.07.11 19:45:00 -
[3]
Hi,
I could retrieve all characters informations with 0.20 version and now, with 0.21 I get some errors on the first request : charselect.
I trace the problem a little and the $contents variable return nothing in class.api.php line 584, don't know why.
|

deadmeet
|
Posted - 2008.07.11 21:15:00 -
[4]
Hi again,
I found the origin of the problem, this is the
$poststring = http_build_query($params); that didn't work properly.
There is a pretty easy and maybe more universal way to do the same thing :
$poststring = '';
foreach($params as $key => $param) { $poststring .= $key.'='.$param.'&'; }
it do the same job and work correctly on my localhost.
In addition, I made some function to retrieve missing API informations ATM, one to retrieve the assets list, one to retrieve the market orders.
However, they need a review, and the assets system still need some work. Because the code should assume there is no real limit in the asset depth, but I have some difficulties to build the returning array taking care of an indinite depth. So, ATM, it assume level 2 depth (list containers, and item in them only, but it's a good begining ;)).
I added them in the wiki
|

deadmeet
|
Posted - 2008.07.11 21:34:00 -
[5]
Hi,
I would add that there is a little problem with the assets retrieve and the new caching system. If I make a loop to get the assets of all character of an account, it get the assets of the first character only if I enable caching. If I disable it, it work properly.
|

deadmeet
|
Posted - 2008.07.16 16:53:00 -
[6]
Hi,
It seems to work like a charm, on a localhost wamp server ;)
I'm playing with the new version of API you provided on the wiki, great job !!
I can't wait to play with the missing stuff like assets listing ;)
|

deadmeet
|
Posted - 2008.07.17 11:51:00 -
[7]
Hi,
Yes, I have php 5.2 on my localhost, so your previous suggestion worked well.
What about my solution ? maybe it's not the most "optimised", but I think it will work on most platform as it's only concatenation of strings.
|
| |
|