These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
12Next page
 

[Help Request] Assets and citadels

First post First post
Author
Golden Gnu
Lobach Inc.
#1 - 2016-06-09 11:31:50 UTC  |  Edited by: Golden Gnu
Hi fellow devs

It looks like Assets in citadels are not included in the normal /char/AssetList.xml.aspx or /corp/AssetList.xml.aspx API.
It may be important to note that the test API Key I have is not the owner of the citadel, but, do have an office there.
Is there any way to get them? Any help would be greatly appreciated! :)

-Golden Gnu

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Blacksmoke16
Imperial Academy
#2 - 2016-06-11 15:51:20 UTC
+1 @CCP FoxFour
CCP FoxFour
C C P
C C P Alliance
#3 - 2016-06-13 09:18:54 UTC
I will let CCP Tellus know :)

@CCP_FoxFour // Technical Designer // Team Tech Co

Third-party developer? Check out the official developers site for dev blogs, resources, and more.

NoobMan
Perkone
Caldari State
#4 - 2016-07-18 12:18:59 UTC
Bump!

Operations Director of Hard K(n)ocks Inc.

Doku Dakar
Nova Prospect Enterprises
#5 - 2016-07-24 16:52:30 UTC
Ah nice spot. I imagine his feature would be extremely useful
Golden Gnu
Lobach Inc.
#6 - 2016-07-27 14:43:06 UTC
Any news about this issue? ...is it being worked on or at least planned for the future?

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Philip Ogtaulmolfi
We are not bad. Just unlucky
#7 - 2016-07-30 14:03:13 UTC  |  Edited by: Philip Ogtaulmolfi
Unles I am completely wrong, I think I am getting them.

itemID="1021664671710" locationID="1021564102241" typeID="3687" quantity="1" flag="115" singleton="0"

That's one Citadel in Perimeter. The flag=115 is the first corp hangar.
Blacksmoke16
Imperial Academy
#8 - 2016-07-30 16:18:32 UTC
Just looked on my character assetList and it doesn't include anything i have in citadels.
Servanda
Liga Freier Terraner
Northern Coalition.
#9 - 2016-08-03 10:42:50 UTC
yeah please add the assets in citadels to the api. This makes it useless for bigger groups to use keepstars as you will lose access to api verified services for certain assets like supers or caps.
LSky NLX
Brave Newbies Inc.
Brave Collective
#10 - 2016-08-06 10:45:28 UTC
This would be a great addition!
Careby
#11 - 2016-08-10 12:59:34 UTC
Still no citadel assets. This is an important issue for me and for anyone else who has assets in citadels. I don't want to have to move back to an NPC station just to find out what I have.

Pete Butcher
The Scope
Gallente Federation
#12 - 2016-08-10 13:02:08 UTC
We still don't have market data too. Pretty annoying.

http://evernus.com - the ultimate multiplatform EVE trade tool + nullsec Alliance Market tool

Squizz Caphinator
The Wormhole Police
#13 - 2016-08-10 17:24:03 UTC
Blacksmoke16 wrote:
+1 @CCP FoxFour


Psst, FoxFour moved back to Canada, he's no longer at CCP. Don't worry, he left on good terms

Various projects I enjoy putting my free time into:

https://zkillboard.com | https://evewho.com

Blacksmoke16
Imperial Academy
#14 - 2016-08-12 13:40:24 UTC
Squizz Caphinator wrote:
Blacksmoke16 wrote:
+1 @CCP FoxFour


Psst, FoxFour moved back to Canada, he's no longer at CCP. Don't worry, he left on good terms


Yes but when i posted that he was still there, and he did reply :)
Devid Maken
School of Applied Knowledge
Caldari State
#15 - 2016-08-12 14:03:07 UTC
+1 pls fix assets in citadels.
Pete Butcher
The Scope
Gallente Federation
#16 - 2016-08-12 14:24:23 UTC
Devid Maken wrote:
+1 pls fix assets in citadels.


and market orders

and all the ****

http://evernus.com - the ultimate multiplatform EVE trade tool + nullsec Alliance Market tool

Genesis Dextius
The Scope
Gallente Federation
#17 - 2016-08-13 02:15:33 UTC
It appears that citadel IDs are over 32 bits (which the XML API only accepts 32 bits).
Philip Ogtaulmolfi
We are not bad. Just unlucky
#18 - 2016-08-13 13:54:45 UTC  |  Edited by: Philip Ogtaulmolfi
Genesis Dextius wrote:
It appears that citadel IDs are over 32 bits (which the XML API only accepts 32 bits).


I can see them.

itemID="1021664671710" locationID="1021564102241" typeID="3687" quantity="1" flag="115" singleton="0"

That's one Citadel in Perimeter. The flag=115 is the first corp hangar.
Blacksmoke16
Imperial Academy
#19 - 2016-08-20 15:39:28 UTC
The assetList api is showing corporate assets in the citadel corp hangers. However it is not showing personal assets for a character. Progress is being made i guess then.
Blacksmoke16
Imperial Academy
#20 - 2016-08-20 19:09:35 UTC
Ok so something really weird is going on or I'm missing something.

I made a script in ruby that loops thru each of my accounts' assets and loads them into a mySQL table.



    Account.all.each do |account|
        url = "https://api.eveonline.com/char/AssetList.xml.aspx?keyID=#{account.keyID}&vCode=#{account.vCode}&characterid=#{account.characterID}&flat=1"
        doc = Nokogiri::XML(open(url))
        doc.xpath('//row').each do |row|
          rawQuantity = if row.xpath('@rawQuantity').present?
                          row.xpath('@rawQuantity').first.value
                        else
                          0
                        end

          asset_list << Asset.new(
            characterID: account.characterID,
            itemID:      row.xpath('@itemID').first.value,
            locationID:  row.xpath('@locationID').first.value,
            typeID:      row.xpath('@typeID').first.value,
            categoryID:  Item.find(row.xpath('@typeID').first.value).category.categoryID,
            quantity:    row.xpath('@quantity').first.value,
            flag:        row.xpath('@flag').first.value,
            singleton:   row.xpath('@singleton').first.value,
            rawQuantity: rawQuantity
          )
        end
end


Now the weird part about this is when I look at the table that it imports to; it includes items i have in citadels. ex an Archon. Whereas if i open the asset list api url in chrome, then there is no archon in the list.






12Next page