eveapi 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.rubocop.yml +1 -6
- data/README.md +59 -16
- data/Rakefile +10 -1
- data/eveapi.gemspec +4 -4
- data/gemspec.yml +2 -0
- data/lib/eveapi.rb +2 -0
- data/lib/eveapi/alliance.rb +50 -0
- data/lib/eveapi/character.rb +60 -0
- data/lib/eveapi/client.rb +28 -2
- data/lib/eveapi/crest.rb +8 -3
- data/lib/eveapi/util.rb +4 -0
- data/lib/eveapi/version.rb +1 -1
- data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_corporations_to_be_an_Array.yml +7017 -0
- data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_find_to_fill_short_name_and_name_values.yml +2263 -0
- data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_info_to_be_a_Hash.yml +7017 -0
- data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_new_with_id_argument_to_create_an_Alliance.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Alliance/expect_Alliance_to_h_to_be_a_Hash.yml +6925 -0
- data/spec/cassettes/EVEApi/EVEApi_Character/expect_Character_new_args_to_create_a_Character.yml +193 -0
- data/spec/cassettes/EVEApi/EVEApi_Character/expect_a_Character_account_balance_to_return_a_Hash.yml +222 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_account_status.yml +161 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_api_key_info.yml +163 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_account_characters.yml +162 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_account_balance.yml +160 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_asset_list.yml +207 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_character_sheet.yml +207 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_list.yml +175 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contact_notifications.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_contracts.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_industry_jobs.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mail_messages.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_mailing_lists.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_market_orders.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_medals.yml +160 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_notifications.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_research.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_in_training.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_skill_queue.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_standings.yml +173 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_upcoming_calendar_events.yml +169 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_journal.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_char_wallet_transactions.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/calling_api_method_server_server_status.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_characters_to_handle_mutiple_characters_differently.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_charcaters_to_succeed.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_connection_to_be_an_Excon_Connection.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_new_to_succeed.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_Client_params_to_return_an_empty_hash_when_on_no_param.yml +131 -0
- data/spec/cassettes/EVEApi/{calling_api_methods_should_return_an_Array_of_method_symobls.yml → EVEApi_Client/expect_api_methods_to_return_an_Array_of_method_symobls.yml} +134 -6
- data/spec/cassettes/EVEApi/{calling_a_method_not_present_in_the_EVEApi_should_fail.yml → EVEApi_Client/expect_calling_a_non-existing_API_method_to_fail.yml} +132 -4
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_calling_an_existing_API_method_to_succeed.yml +159 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_check_path_to_return_a_non-empty_String_for_a_muti-part_name.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Client/expect_check_path_to_return_an_empty_String_for_a_one_part_name.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_alliances_to_be_an_Array.yml +6925 -0
- data/spec/cassettes/EVEApi/EVEApi_Crest/expect_Crest_new_to_succeed.yml +131 -0
- data/spec/cassettes/EVEApi/EVEApi_Request/expect_there_to_be_a_EVEApi_Request_class.yml +131 -0
- data/spec/eve_api_spec.rb +117 -0
- metadata +76 -30
- data/spec/cassettes/EVEApi/calling_a_method_present_in_the_EVEApi_should_success.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_account_account_status.yml +0 -33
- data/spec/cassettes/EVEApi/calling_api_method_account_api_key_info.yml +0 -35
- data/spec/cassettes/EVEApi/calling_api_method_account_characters.yml +0 -34
- data/spec/cassettes/EVEApi/calling_api_method_char_account_balance.yml +0 -32
- data/spec/cassettes/EVEApi/calling_api_method_char_asset_list.yml +0 -79
- data/spec/cassettes/EVEApi/calling_api_method_char_character_sheet.yml +0 -79
- data/spec/cassettes/EVEApi/calling_api_method_char_contact_list.yml +0 -47
- data/spec/cassettes/EVEApi/calling_api_method_char_contact_notifications.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_contracts.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_industry_jobs.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_mail_messages.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_mailing_lists.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_market_orders.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_medals.yml +0 -32
- data/spec/cassettes/EVEApi/calling_api_method_char_notifications.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_research.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_skill_in_training.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_skill_queue.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_standings.yml +0 -45
- data/spec/cassettes/EVEApi/calling_api_method_char_upcoming_calendar_events.yml +0 -37
- data/spec/cassettes/EVEApi/calling_api_method_char_wallet_journal.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_char_wallet_transactions.yml +0 -31
- data/spec/cassettes/EVEApi/calling_api_method_server_server_status.yml +0 -31
- data/spec/cassettes/EVEApi_Crest/alliances_crest_methods_should_return_an_Array_of_alliances.yml +0 -13577
- data/spec/eveapi_spec.rb +0 -73
@@ -1,31 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/server/ServerStatus.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:17 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:18</currentTime>\r\n <result>\r\n <serverOpen>True</serverOpen>\r\n
|
27
|
-
\ <onlinePlayers>26947</onlinePlayers>\r\n </result>\r\n <cachedUntil>2015-09-10
|
28
|
-
20:28:06</cachedUntil>\r\n</eveapi>"
|
29
|
-
http_version:
|
30
|
-
recorded_at: Thu, 10 Sep 2015 20:27:18 GMT
|
31
|
-
recorded_with: VCR 2.9.3
|
@@ -1,33 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/account/AccountStatus.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:18 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:19</currentTime>\r\n <result>\r\n <paidUntil>2015-05-09
|
27
|
-
20:30:35</paidUntil>\r\n <createDate>2015-04-09 20:28:28</createDate>\r\n
|
28
|
-
\ <logonCount>14</logonCount>\r\n <logonMinutes>166</logonMinutes>\r\n
|
29
|
-
\ <rowset name=\"multiCharacterTraining\" key=\"trainingEnd\" columns=\"trainingEnd\"
|
30
|
-
/>\r\n </result>\r\n <cachedUntil>2015-09-10 21:24:19</cachedUntil>\r\n</eveapi>"
|
31
|
-
http_version:
|
32
|
-
recorded_at: Thu, 10 Sep 2015 20:27:19 GMT
|
33
|
-
recorded_with: VCR 2.9.3
|
@@ -1,35 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/account/ApiKeyInfo.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:18 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:19</currentTime>\r\n <result>\r\n <key
|
27
|
-
accessMask=\"268435455\" type=\"Account\" expires=\"\">\r\n <rowset name=\"characters\"
|
28
|
-
key=\"characterID\" columns=\"characterID,characterName,corporationID,corporationName,allianceID,allianceName,factionID,factionName\">\r\n
|
29
|
-
\ <row characterID=\"95512059\" characterName=\"Quint Slade\" corporationID=\"1000166\"
|
30
|
-
corporationName=\"Imperial Academy\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
31
|
-
factionName=\"\" />\r\n </rowset>\r\n </key>\r\n </result>\r\n <cachedUntil>2015-09-10
|
32
|
-
20:32:19</cachedUntil>\r\n</eveapi>"
|
33
|
-
http_version:
|
34
|
-
recorded_at: Thu, 10 Sep 2015 20:27:19 GMT
|
35
|
-
recorded_with: VCR 2.9.3
|
@@ -1,34 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:19 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:19</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
28
|
-
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
29
|
-
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
30
|
-
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-10
|
31
|
-
21:24:19</cachedUntil>\r\n</eveapi>"
|
32
|
-
http_version:
|
33
|
-
recorded_at: Thu, 10 Sep 2015 20:27:19 GMT
|
34
|
-
recorded_with: VCR 2.9.3
|
@@ -1,32 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/AccountBalance.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:27 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:28</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"accounts\" key=\"accountID\" columns=\"accountID,accountKey,balance\">\r\n
|
28
|
-
\ <row accountID=\"69081883\" accountKey=\"1000\" balance=\"0.01\" />\r\n
|
29
|
-
\ </rowset>\r\n </result>\r\n <cachedUntil>2015-09-10 20:42:20</cachedUntil>\r\n</eveapi>"
|
30
|
-
http_version:
|
31
|
-
recorded_at: Thu, 10 Sep 2015 20:27:28 GMT
|
32
|
-
recorded_with: VCR 2.9.3
|
@@ -1,79 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/AssetList.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:27 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:27</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"assets\" key=\"itemID\" columns=\"itemID,locationID,typeID,quantity,flag,singleton\">\r\n
|
28
|
-
\ <row itemID=\"1017893173936\" locationID=\"60003760\" typeID=\"596\"
|
29
|
-
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\">\r\n <rowset
|
30
|
-
name=\"contents\" key=\"itemID\" columns=\"itemID,typeID,quantity,flag,singleton\">\r\n
|
31
|
-
\ <row itemID=\"1017893173939\" typeID=\"3634\" quantity=\"1\" flag=\"27\"
|
32
|
-
singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017893173941\"
|
33
|
-
typeID=\"3651\" quantity=\"1\" flag=\"28\" singleton=\"1\" rawQuantity=\"-1\"
|
34
|
-
/>\r\n <row itemID=\"1017893173946\" typeID=\"34\" quantity=\"1\"
|
35
|
-
flag=\"5\" singleton=\"0\" />\r\n </rowset>\r\n </row>\r\n <row
|
36
|
-
itemID=\"1017900774635\" locationID=\"60003760\" typeID=\"6675\" quantity=\"1\"
|
37
|
-
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900807256\"
|
38
|
-
locationID=\"60003760\" typeID=\"5971\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
39
|
-
rawQuantity=\"-1\" />\r\n <row itemID=\"1017900827015\" locationID=\"60003760\"
|
40
|
-
typeID=\"6003\" quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\"
|
41
|
-
/>\r\n <row itemID=\"1017901004593\" locationID=\"60003760\" typeID=\"5846\"
|
42
|
-
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row
|
43
|
-
itemID=\"1017901005820\" locationID=\"60003760\" typeID=\"5846\" quantity=\"1\"
|
44
|
-
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901005984\"
|
45
|
-
locationID=\"60003760\" typeID=\"5846\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
46
|
-
rawQuantity=\"-1\" />\r\n <row itemID=\"1017901024861\" locationID=\"60003760\"
|
47
|
-
typeID=\"5846\" quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\"
|
48
|
-
/>\r\n <row itemID=\"1017901031215\" locationID=\"60003760\" typeID=\"521\"
|
49
|
-
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row
|
50
|
-
itemID=\"1017901077522\" locationID=\"60003760\" typeID=\"11265\" quantity=\"1\"
|
51
|
-
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900764533\"
|
52
|
-
locationID=\"60006883\" typeID=\"17703\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
53
|
-
rawQuantity=\"-1\">\r\n <rowset name=\"contents\" key=\"itemID\" columns=\"itemID,typeID,quantity,flag,singleton\">\r\n
|
54
|
-
\ <row itemID=\"1017900776273\" typeID=\"6675\" quantity=\"1\" flag=\"27\"
|
55
|
-
singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900776448\"
|
56
|
-
typeID=\"6675\" quantity=\"1\" flag=\"28\" singleton=\"1\" rawQuantity=\"-1\"
|
57
|
-
/>\r\n <row itemID=\"1017900796881\" typeID=\"23071\" quantity=\"1\"
|
58
|
-
flag=\"28\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900799567\"
|
59
|
-
typeID=\"23071\" quantity=\"1\" flag=\"27\" singleton=\"1\" rawQuantity=\"-1\"
|
60
|
-
/>\r\n <row itemID=\"1017901011912\" typeID=\"14069\" quantity=\"1\"
|
61
|
-
flag=\"15\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901020401\"
|
62
|
-
typeID=\"31370\" quantity=\"1\" flag=\"92\" singleton=\"1\" rawQuantity=\"-1\"
|
63
|
-
/>\r\n <row itemID=\"1017901020818\" typeID=\"31370\" quantity=\"1\"
|
64
|
-
flag=\"93\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901037323\"
|
65
|
-
typeID=\"17526\" quantity=\"1\" flag=\"20\" singleton=\"1\" rawQuantity=\"-1\"
|
66
|
-
/>\r\n <row itemID=\"1017901043104\" typeID=\"26929\" quantity=\"1\"
|
67
|
-
flag=\"94\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901508301\"
|
68
|
-
typeID=\"23900\" quantity=\"1\" flag=\"14\" singleton=\"1\" rawQuantity=\"-1\"
|
69
|
-
/>\r\n <row itemID=\"1017901509937\" typeID=\"23900\" quantity=\"1\"
|
70
|
-
flag=\"11\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901510157\"
|
71
|
-
typeID=\"23900\" quantity=\"1\" flag=\"12\" singleton=\"1\" rawQuantity=\"-1\"
|
72
|
-
/>\r\n <row itemID=\"1017901510330\" typeID=\"23900\" quantity=\"1\"
|
73
|
-
flag=\"13\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017929872073\"
|
74
|
-
typeID=\"14124\" quantity=\"1\" flag=\"19\" singleton=\"1\" rawQuantity=\"-1\"
|
75
|
-
/>\r\n </rowset>\r\n </row>\r\n </rowset>\r\n </result>\r\n
|
76
|
-
\ <cachedUntil>2015-09-11 02:27:27</cachedUntil>\r\n</eveapi>"
|
77
|
-
http_version:
|
78
|
-
recorded_at: Thu, 10 Sep 2015 20:27:27 GMT
|
79
|
-
recorded_with: VCR 2.9.3
|
@@ -1,79 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/CharacterSheet.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:26 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:27</currentTime>\r\n <result>\r\n <characterID>95512059</characterID>\r\n
|
27
|
-
\ <name>Quint Slade</name>\r\n <homeStationID>60014629</homeStationID>\r\n
|
28
|
-
\ <DoB>2015-04-09 20:37:05</DoB>\r\n <race>Amarr</race>\r\n <bloodLineID>13</bloodLineID>\r\n
|
29
|
-
\ <bloodLine>Khanid</bloodLine>\r\n <ancestryID>37</ancestryID>\r\n <ancestry>Cyber
|
30
|
-
Knights</ancestry>\r\n <gender>Male</gender>\r\n <corporationName>Imperial
|
31
|
-
Academy</corporationName>\r\n <corporationID>1000166</corporationID>\r\n
|
32
|
-
\ <cloneTypeID>164</cloneTypeID>\r\n <cloneName>Clone Grade Alpha</cloneName>\r\n
|
33
|
-
\ <cloneSkillPoints>0</cloneSkillPoints>\r\n <freeSkillPoints>0</freeSkillPoints>\r\n
|
34
|
-
\ <freeRespecs>2</freeRespecs>\r\n <cloneJumpDate>0001-01-01 00:00:00</cloneJumpDate>\r\n
|
35
|
-
\ <lastRespecDate>0001-01-01 00:00:00</lastRespecDate>\r\n <lastTimedRespec>0001-01-01
|
36
|
-
00:00:00</lastTimedRespec>\r\n <remoteStationDate>0001-01-01 00:00:00</remoteStationDate>\r\n
|
37
|
-
\ <rowset name=\"jumpClones\" key=\"jumpCloneID\" columns=\"jumpCloneID,typeID,locationID,cloneName\"
|
38
|
-
/>\r\n <rowset name=\"jumpCloneImplants\" key=\"jumpCloneID\" columns=\"jumpCloneID,typeID,typeName\"
|
39
|
-
/>\r\n <jumpActivation>0001-01-01 00:00:00</jumpActivation>\r\n <jumpFatigue>0001-01-01
|
40
|
-
00:00:00</jumpFatigue>\r\n <jumpLastUpdate>0001-01-01 00:00:00</jumpLastUpdate>\r\n
|
41
|
-
\ <balance>0.01</balance>\r\n <rowset name=\"implants\" key=\"typeID\"
|
42
|
-
columns=\"typeID,typeName\">\r\n <row typeID=\"9956\" typeName=\"Social
|
43
|
-
Adaptation Chip - Basic\" />\r\n <row typeID=\"10221\" typeName=\"Cybernetic
|
44
|
-
Subprocessor - Standard\" />\r\n <row typeID=\"10208\" typeName=\"Memory
|
45
|
-
Augmentation - Standard\" />\r\n <row typeID=\"10212\" typeName=\"Neural
|
46
|
-
Boost - Standard\" />\r\n <row typeID=\"10216\" typeName=\"Ocular Filter
|
47
|
-
- Standard\" />\r\n </rowset>\r\n <attributes>\r\n <intelligence>20</intelligence>\r\n
|
48
|
-
\ <memory>20</memory>\r\n <charisma>19</charisma>\r\n <perception>20</perception>\r\n
|
49
|
-
\ <willpower>20</willpower>\r\n </attributes>\r\n <rowset name=\"skills\"
|
50
|
-
key=\"typeID\" columns=\"typeID,skillpoints,level,published\">\r\n <row
|
51
|
-
typeID=\"3300\" skillpoints=\"1415\" level=\"2\" published=\"1\" />\r\n <row
|
52
|
-
typeID=\"3303\" skillpoints=\"8000\" level=\"3\" published=\"1\" />\r\n <row
|
53
|
-
typeID=\"3327\" skillpoints=\"256000\" level=\"5\" published=\"1\" />\r\n
|
54
|
-
\ <row typeID=\"3331\" skillpoints=\"3603\" level=\"2\" published=\"1\"
|
55
|
-
/>\r\n <row typeID=\"3386\" skillpoints=\"1415\" level=\"2\" published=\"1\"
|
56
|
-
/>\r\n <row typeID=\"3392\" skillpoints=\"1421\" level=\"2\" published=\"1\"
|
57
|
-
/>\r\n <row typeID=\"3402\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
58
|
-
/>\r\n <row typeID=\"3412\" skillpoints=\"750\" level=\"1\" published=\"1\"
|
59
|
-
/>\r\n <row typeID=\"3413\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
60
|
-
/>\r\n <row typeID=\"3426\" skillpoints=\"45255\" level=\"4\" published=\"1\"
|
61
|
-
/>\r\n <row typeID=\"3449\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
62
|
-
/>\r\n <row typeID=\"3411\" skillpoints=\"768000\" level=\"5\" published=\"1\"
|
63
|
-
/>\r\n <row typeID=\"3450\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
64
|
-
/>\r\n <row typeID=\"3318\" skillpoints=\"90510\" level=\"4\" published=\"1\"
|
65
|
-
/>\r\n <row typeID=\"3393\" skillpoints=\"250\" level=\"1\" published=\"1\"
|
66
|
-
/>\r\n <row typeID=\"3424\" skillpoints=\"2829\" level=\"2\" published=\"1\"
|
67
|
-
/>\r\n <row typeID=\"3394\" skillpoints=\"500\" level=\"1\" published=\"1\"
|
68
|
-
/>\r\n <row typeID=\"3454\" skillpoints=\"1250\" level=\"1\" published=\"1\"
|
69
|
-
/>\r\n </rowset>\r\n <rowset name=\"certificates\" key=\"certificateID\"
|
70
|
-
columns=\"certificateID\" />\r\n <rowset name=\"corporationRoles\" key=\"roleID\"
|
71
|
-
columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtHQ\"
|
72
|
-
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtBase\"
|
73
|
-
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtOther\"
|
74
|
-
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationTitles\"
|
75
|
-
key=\"titleID\" columns=\"titleID,titleName\" />\r\n </result>\r\n <cachedUntil>2015-09-10
|
76
|
-
21:24:27</cachedUntil>\r\n</eveapi>"
|
77
|
-
http_version:
|
78
|
-
recorded_at: Thu, 10 Sep 2015 20:27:27 GMT
|
79
|
-
recorded_with: VCR 2.9.3
|
@@ -1,47 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/ContactList.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:26 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:27</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"contactList\" key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask,inWatchlist\">\r\n
|
28
|
-
\ <row contactID=\"3011819\" contactName=\"Sula Kate\" standing=\"0\"
|
29
|
-
contactTypeID=\"1376\" labelMask=\"0\" inWatchlist=\"False\" />\r\n <row
|
30
|
-
contactID=\"3012076\" contactName=\"Koikaski Uika\" standing=\"0\" contactTypeID=\"1376\"
|
31
|
-
labelMask=\"0\" inWatchlist=\"False\" />\r\n <row contactID=\"3013320\"
|
32
|
-
contactName=\"Ahmobah Hethiba\" standing=\"0\" contactTypeID=\"1373\" labelMask=\"0\"
|
33
|
-
inWatchlist=\"False\" />\r\n <row contactID=\"3016824\" contactName=\"Okada
|
34
|
-
Laah\" standing=\"0\" contactTypeID=\"1376\" labelMask=\"0\" inWatchlist=\"False\"
|
35
|
-
/>\r\n <row contactID=\"93273990\" contactName=\"Carl Malus\" standing=\"10\"
|
36
|
-
contactTypeID=\"1375\" labelMask=\"0\" inWatchlist=\"True\" />\r\n <row
|
37
|
-
contactID=\"810699209\" contactName=\"Adrian Dent\" standing=\"10\" contactTypeID=\"1375\"
|
38
|
-
labelMask=\"0\" inWatchlist=\"True\" />\r\n </rowset>\r\n <rowset name=\"contactLabels\"
|
39
|
-
key=\"labelID\" columns=\"name\" />\r\n <rowset name=\"corporateContactList\"
|
40
|
-
key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask\"
|
41
|
-
/>\r\n <rowset name=\"corporateContactLabels\" key=\"labelID\" columns=\"name\"
|
42
|
-
/>\r\n <rowset name=\"allianceContactList\" key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask\"
|
43
|
-
/>\r\n <rowset name=\"allianceContactLabels\" key=\"labelID\" columns=\"name\"
|
44
|
-
/>\r\n </result>\r\n <cachedUntil>2015-09-10 20:42:27</cachedUntil>\r\n</eveapi>"
|
45
|
-
http_version:
|
46
|
-
recorded_at: Thu, 10 Sep 2015 20:27:27 GMT
|
47
|
-
recorded_with: VCR 2.9.3
|
@@ -1,31 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/ContactNotifications.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:26 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:27</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"contactNotifications\" key=\"notificationID\" columns=\"notificationID,senderID,senderName,sentDate,messageData\"
|
28
|
-
/>\r\n </result>\r\n <cachedUntil>2015-09-10 20:57:27</cachedUntil>\r\n</eveapi>"
|
29
|
-
http_version:
|
30
|
-
recorded_at: Thu, 10 Sep 2015 20:27:27 GMT
|
31
|
-
recorded_with: VCR 2.9.3
|
@@ -1,31 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/Contracts.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:19 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:20</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"contractList\" key=\"contractID\" columns=\"contractID,issuerID,issuerCorpID,assigneeID,acceptorID,startStationID,endStationID,type,status,title,forCorp,availability,dateIssued,dateExpired,dateAccepted,numDays,dateCompleted,price,reward,collateral,buyout,volume\"
|
28
|
-
/>\r\n </result>\r\n <cachedUntil>2015-09-10 20:41:20</cachedUntil>\r\n</eveapi>"
|
29
|
-
http_version:
|
30
|
-
recorded_at: Thu, 10 Sep 2015 20:27:20 GMT
|
31
|
-
recorded_with: VCR 2.9.3
|
@@ -1,31 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: https://api.eveonline.com/char/IndustryJobs.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- excon/0.45.4
|
12
|
-
response:
|
13
|
-
status:
|
14
|
-
code: 200
|
15
|
-
message: ''
|
16
|
-
headers:
|
17
|
-
Content-Type:
|
18
|
-
- application/xml; charset=utf-8
|
19
|
-
Access-Control-Allow-Origin:
|
20
|
-
- "*"
|
21
|
-
Date:
|
22
|
-
- Thu, 10 Sep 2015 20:27:26 GMT
|
23
|
-
body:
|
24
|
-
encoding: UTF-8
|
25
|
-
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
26
|
-
\ <currentTime>2015-09-10 20:27:26</currentTime>\r\n <result>\r\n <rowset
|
27
|
-
name=\"jobs\" key=\"jobID\" columns=\"jobID,installerID,installerName,facilityID,solarSystemID,solarSystemName,stationID,activityID,blueprintID,blueprintTypeID,blueprintTypeName,blueprintLocationID,outputLocationID,runs,cost,teamID,licensedRuns,probability,productTypeID,productTypeName,status,timeInSeconds,startDate,endDate,pauseDate,completedDate,completedCharacterID,successfulRuns\"
|
28
|
-
/>\r\n </result>\r\n <cachedUntil>2015-09-10 20:42:26</cachedUntil>\r\n</eveapi>"
|
29
|
-
http_version:
|
30
|
-
recorded_at: Thu, 10 Sep 2015 20:27:26 GMT
|
31
|
-
recorded_with: VCR 2.9.3
|