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
@@ -0,0 +1,207 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
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
|
+
- Sat, 12 Sep 2015 08:52:22 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-12 08:52:23</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=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
29
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
30
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
31
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
32
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
33
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
34
|
+
http_version:
|
35
|
+
recorded_at: Sat, 12 Sep 2015 08:52:23 GMT
|
36
|
+
- request:
|
37
|
+
method: get
|
38
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
39
|
+
body:
|
40
|
+
encoding: US-ASCII
|
41
|
+
string: ''
|
42
|
+
headers:
|
43
|
+
User-Agent:
|
44
|
+
- excon/0.45.4
|
45
|
+
response:
|
46
|
+
status:
|
47
|
+
code: 200
|
48
|
+
message: ''
|
49
|
+
headers:
|
50
|
+
Content-Type:
|
51
|
+
- application/xml; charset=utf-8
|
52
|
+
Access-Control-Allow-Origin:
|
53
|
+
- "*"
|
54
|
+
Date:
|
55
|
+
- Sat, 12 Sep 2015 08:52:23 GMT
|
56
|
+
body:
|
57
|
+
encoding: UTF-8
|
58
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
59
|
+
\ <currentTime>2015-09-12 08:52:23</currentTime>\r\n <result>\r\n <rowset
|
60
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
61
|
+
\ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
62
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
63
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
64
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
65
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
66
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
67
|
+
http_version:
|
68
|
+
recorded_at: Sat, 12 Sep 2015 08:52:23 GMT
|
69
|
+
- request:
|
70
|
+
method: get
|
71
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
72
|
+
body:
|
73
|
+
encoding: US-ASCII
|
74
|
+
string: ''
|
75
|
+
headers:
|
76
|
+
User-Agent:
|
77
|
+
- excon/0.45.4
|
78
|
+
response:
|
79
|
+
status:
|
80
|
+
code: 200
|
81
|
+
message: ''
|
82
|
+
headers:
|
83
|
+
Content-Type:
|
84
|
+
- application/xml; charset=utf-8
|
85
|
+
Access-Control-Allow-Origin:
|
86
|
+
- "*"
|
87
|
+
Date:
|
88
|
+
- Sat, 12 Sep 2015 08:52:23 GMT
|
89
|
+
body:
|
90
|
+
encoding: UTF-8
|
91
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
92
|
+
\ <currentTime>2015-09-12 08:52:23</currentTime>\r\n <result>\r\n <rowset
|
93
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
94
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
95
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
96
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
97
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
98
|
+
http_version:
|
99
|
+
recorded_at: Sat, 12 Sep 2015 08:52:23 GMT
|
100
|
+
- request:
|
101
|
+
method: get
|
102
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
103
|
+
body:
|
104
|
+
encoding: US-ASCII
|
105
|
+
string: ''
|
106
|
+
headers:
|
107
|
+
User-Agent:
|
108
|
+
- excon/0.45.4
|
109
|
+
response:
|
110
|
+
status:
|
111
|
+
code: 200
|
112
|
+
message: ''
|
113
|
+
headers:
|
114
|
+
Content-Type:
|
115
|
+
- application/xml; charset=utf-8
|
116
|
+
Access-Control-Allow-Origin:
|
117
|
+
- "*"
|
118
|
+
Date:
|
119
|
+
- Sat, 12 Sep 2015 08:52:23 GMT
|
120
|
+
body:
|
121
|
+
encoding: UTF-8
|
122
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
123
|
+
\ <currentTime>2015-09-12 08:52:24</currentTime>\r\n <result>\r\n <rowset
|
124
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
125
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
126
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
127
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
128
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
129
|
+
http_version:
|
130
|
+
recorded_at: Sat, 12 Sep 2015 08:52:24 GMT
|
131
|
+
- request:
|
132
|
+
method: get
|
133
|
+
uri: https://api.eveonline.com/char/AssetList.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
134
|
+
body:
|
135
|
+
encoding: US-ASCII
|
136
|
+
string: ''
|
137
|
+
headers:
|
138
|
+
User-Agent:
|
139
|
+
- excon/0.45.4
|
140
|
+
response:
|
141
|
+
status:
|
142
|
+
code: 200
|
143
|
+
message: ''
|
144
|
+
headers:
|
145
|
+
Content-Type:
|
146
|
+
- application/xml; charset=utf-8
|
147
|
+
Access-Control-Allow-Origin:
|
148
|
+
- "*"
|
149
|
+
Date:
|
150
|
+
- Sat, 12 Sep 2015 08:52:23 GMT
|
151
|
+
body:
|
152
|
+
encoding: UTF-8
|
153
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
154
|
+
\ <currentTime>2015-09-12 08:52:24</currentTime>\r\n <result>\r\n <rowset
|
155
|
+
name=\"assets\" key=\"itemID\" columns=\"itemID,locationID,typeID,quantity,flag,singleton\">\r\n
|
156
|
+
\ <row itemID=\"1017893173936\" locationID=\"60003760\" typeID=\"596\"
|
157
|
+
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\">\r\n <rowset
|
158
|
+
name=\"contents\" key=\"itemID\" columns=\"itemID,typeID,quantity,flag,singleton\">\r\n
|
159
|
+
\ <row itemID=\"1017893173939\" typeID=\"3634\" quantity=\"1\" flag=\"27\"
|
160
|
+
singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017893173941\"
|
161
|
+
typeID=\"3651\" quantity=\"1\" flag=\"28\" singleton=\"1\" rawQuantity=\"-1\"
|
162
|
+
/>\r\n <row itemID=\"1017893173946\" typeID=\"34\" quantity=\"1\"
|
163
|
+
flag=\"5\" singleton=\"0\" />\r\n </rowset>\r\n </row>\r\n <row
|
164
|
+
itemID=\"1017900774635\" locationID=\"60003760\" typeID=\"6675\" quantity=\"1\"
|
165
|
+
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900807256\"
|
166
|
+
locationID=\"60003760\" typeID=\"5971\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
167
|
+
rawQuantity=\"-1\" />\r\n <row itemID=\"1017900827015\" locationID=\"60003760\"
|
168
|
+
typeID=\"6003\" quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\"
|
169
|
+
/>\r\n <row itemID=\"1017901004593\" locationID=\"60003760\" typeID=\"5846\"
|
170
|
+
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row
|
171
|
+
itemID=\"1017901005820\" locationID=\"60003760\" typeID=\"5846\" quantity=\"1\"
|
172
|
+
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901005984\"
|
173
|
+
locationID=\"60003760\" typeID=\"5846\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
174
|
+
rawQuantity=\"-1\" />\r\n <row itemID=\"1017901024861\" locationID=\"60003760\"
|
175
|
+
typeID=\"5846\" quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\"
|
176
|
+
/>\r\n <row itemID=\"1017901031215\" locationID=\"60003760\" typeID=\"521\"
|
177
|
+
quantity=\"1\" flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row
|
178
|
+
itemID=\"1017901077522\" locationID=\"60003760\" typeID=\"11265\" quantity=\"1\"
|
179
|
+
flag=\"4\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900764533\"
|
180
|
+
locationID=\"60006883\" typeID=\"17703\" quantity=\"1\" flag=\"4\" singleton=\"1\"
|
181
|
+
rawQuantity=\"-1\">\r\n <rowset name=\"contents\" key=\"itemID\" columns=\"itemID,typeID,quantity,flag,singleton\">\r\n
|
182
|
+
\ <row itemID=\"1017900776273\" typeID=\"6675\" quantity=\"1\" flag=\"27\"
|
183
|
+
singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900776448\"
|
184
|
+
typeID=\"6675\" quantity=\"1\" flag=\"28\" singleton=\"1\" rawQuantity=\"-1\"
|
185
|
+
/>\r\n <row itemID=\"1017900796881\" typeID=\"23071\" quantity=\"1\"
|
186
|
+
flag=\"28\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017900799567\"
|
187
|
+
typeID=\"23071\" quantity=\"1\" flag=\"27\" singleton=\"1\" rawQuantity=\"-1\"
|
188
|
+
/>\r\n <row itemID=\"1017901011912\" typeID=\"14069\" quantity=\"1\"
|
189
|
+
flag=\"15\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901020401\"
|
190
|
+
typeID=\"31370\" quantity=\"1\" flag=\"92\" singleton=\"1\" rawQuantity=\"-1\"
|
191
|
+
/>\r\n <row itemID=\"1017901020818\" typeID=\"31370\" quantity=\"1\"
|
192
|
+
flag=\"93\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901037323\"
|
193
|
+
typeID=\"17526\" quantity=\"1\" flag=\"20\" singleton=\"1\" rawQuantity=\"-1\"
|
194
|
+
/>\r\n <row itemID=\"1017901043104\" typeID=\"26929\" quantity=\"1\"
|
195
|
+
flag=\"94\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901508301\"
|
196
|
+
typeID=\"23900\" quantity=\"1\" flag=\"14\" singleton=\"1\" rawQuantity=\"-1\"
|
197
|
+
/>\r\n <row itemID=\"1017901509937\" typeID=\"23900\" quantity=\"1\"
|
198
|
+
flag=\"11\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017901510157\"
|
199
|
+
typeID=\"23900\" quantity=\"1\" flag=\"12\" singleton=\"1\" rawQuantity=\"-1\"
|
200
|
+
/>\r\n <row itemID=\"1017901510330\" typeID=\"23900\" quantity=\"1\"
|
201
|
+
flag=\"13\" singleton=\"1\" rawQuantity=\"-1\" />\r\n <row itemID=\"1017929872073\"
|
202
|
+
typeID=\"14124\" quantity=\"1\" flag=\"19\" singleton=\"1\" rawQuantity=\"-1\"
|
203
|
+
/>\r\n </rowset>\r\n </row>\r\n </rowset>\r\n </result>\r\n
|
204
|
+
\ <cachedUntil>2015-09-12 14:52:24</cachedUntil>\r\n</eveapi>"
|
205
|
+
http_version:
|
206
|
+
recorded_at: Sat, 12 Sep 2015 08:52:24 GMT
|
207
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,207 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
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
|
+
- Sat, 12 Sep 2015 08:52:21 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-12 08:52:22</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=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
29
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
30
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
31
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
32
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
33
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
34
|
+
http_version:
|
35
|
+
recorded_at: Sat, 12 Sep 2015 08:52:22 GMT
|
36
|
+
- request:
|
37
|
+
method: get
|
38
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
39
|
+
body:
|
40
|
+
encoding: US-ASCII
|
41
|
+
string: ''
|
42
|
+
headers:
|
43
|
+
User-Agent:
|
44
|
+
- excon/0.45.4
|
45
|
+
response:
|
46
|
+
status:
|
47
|
+
code: 200
|
48
|
+
message: ''
|
49
|
+
headers:
|
50
|
+
Content-Type:
|
51
|
+
- application/xml; charset=utf-8
|
52
|
+
Access-Control-Allow-Origin:
|
53
|
+
- "*"
|
54
|
+
Date:
|
55
|
+
- Sat, 12 Sep 2015 08:52:21 GMT
|
56
|
+
body:
|
57
|
+
encoding: UTF-8
|
58
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
59
|
+
\ <currentTime>2015-09-12 08:52:22</currentTime>\r\n <result>\r\n <rowset
|
60
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
61
|
+
\ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
62
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
63
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
64
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
65
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
66
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
67
|
+
http_version:
|
68
|
+
recorded_at: Sat, 12 Sep 2015 08:52:22 GMT
|
69
|
+
- request:
|
70
|
+
method: get
|
71
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
72
|
+
body:
|
73
|
+
encoding: US-ASCII
|
74
|
+
string: ''
|
75
|
+
headers:
|
76
|
+
User-Agent:
|
77
|
+
- excon/0.45.4
|
78
|
+
response:
|
79
|
+
status:
|
80
|
+
code: 200
|
81
|
+
message: ''
|
82
|
+
headers:
|
83
|
+
Content-Type:
|
84
|
+
- application/xml; charset=utf-8
|
85
|
+
Access-Control-Allow-Origin:
|
86
|
+
- "*"
|
87
|
+
Date:
|
88
|
+
- Sat, 12 Sep 2015 08:52:21 GMT
|
89
|
+
body:
|
90
|
+
encoding: UTF-8
|
91
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
92
|
+
\ <currentTime>2015-09-12 08:52:22</currentTime>\r\n <result>\r\n <rowset
|
93
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
94
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
95
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
96
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
97
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
98
|
+
http_version:
|
99
|
+
recorded_at: Sat, 12 Sep 2015 08:52:22 GMT
|
100
|
+
- request:
|
101
|
+
method: get
|
102
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
103
|
+
body:
|
104
|
+
encoding: US-ASCII
|
105
|
+
string: ''
|
106
|
+
headers:
|
107
|
+
User-Agent:
|
108
|
+
- excon/0.45.4
|
109
|
+
response:
|
110
|
+
status:
|
111
|
+
code: 200
|
112
|
+
message: ''
|
113
|
+
headers:
|
114
|
+
Content-Type:
|
115
|
+
- application/xml; charset=utf-8
|
116
|
+
Access-Control-Allow-Origin:
|
117
|
+
- "*"
|
118
|
+
Date:
|
119
|
+
- Sat, 12 Sep 2015 08:52:22 GMT
|
120
|
+
body:
|
121
|
+
encoding: UTF-8
|
122
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
123
|
+
\ <currentTime>2015-09-12 08:52:23</currentTime>\r\n <result>\r\n <rowset
|
124
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
125
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
126
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
127
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
128
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
129
|
+
http_version:
|
130
|
+
recorded_at: Sat, 12 Sep 2015 08:52:23 GMT
|
131
|
+
- request:
|
132
|
+
method: get
|
133
|
+
uri: https://api.eveonline.com/char/CharacterSheet.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
134
|
+
body:
|
135
|
+
encoding: US-ASCII
|
136
|
+
string: ''
|
137
|
+
headers:
|
138
|
+
User-Agent:
|
139
|
+
- excon/0.45.4
|
140
|
+
response:
|
141
|
+
status:
|
142
|
+
code: 200
|
143
|
+
message: ''
|
144
|
+
headers:
|
145
|
+
Content-Type:
|
146
|
+
- application/xml; charset=utf-8
|
147
|
+
Access-Control-Allow-Origin:
|
148
|
+
- "*"
|
149
|
+
Date:
|
150
|
+
- Sat, 12 Sep 2015 08:52:22 GMT
|
151
|
+
body:
|
152
|
+
encoding: UTF-8
|
153
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
154
|
+
\ <currentTime>2015-09-12 08:52:23</currentTime>\r\n <result>\r\n <characterID>95512059</characterID>\r\n
|
155
|
+
\ <name>Quint Slade</name>\r\n <homeStationID>60014629</homeStationID>\r\n
|
156
|
+
\ <DoB>2015-04-09 20:37:05</DoB>\r\n <race>Amarr</race>\r\n <bloodLineID>13</bloodLineID>\r\n
|
157
|
+
\ <bloodLine>Khanid</bloodLine>\r\n <ancestryID>37</ancestryID>\r\n <ancestry>Cyber
|
158
|
+
Knights</ancestry>\r\n <gender>Male</gender>\r\n <corporationName>Imperial
|
159
|
+
Academy</corporationName>\r\n <corporationID>1000166</corporationID>\r\n
|
160
|
+
\ <cloneTypeID>164</cloneTypeID>\r\n <cloneName>Clone Grade Alpha</cloneName>\r\n
|
161
|
+
\ <cloneSkillPoints>0</cloneSkillPoints>\r\n <freeSkillPoints>0</freeSkillPoints>\r\n
|
162
|
+
\ <freeRespecs>2</freeRespecs>\r\n <cloneJumpDate>0001-01-01 00:00:00</cloneJumpDate>\r\n
|
163
|
+
\ <lastRespecDate>0001-01-01 00:00:00</lastRespecDate>\r\n <lastTimedRespec>0001-01-01
|
164
|
+
00:00:00</lastTimedRespec>\r\n <remoteStationDate>0001-01-01 00:00:00</remoteStationDate>\r\n
|
165
|
+
\ <rowset name=\"jumpClones\" key=\"jumpCloneID\" columns=\"jumpCloneID,typeID,locationID,cloneName\"
|
166
|
+
/>\r\n <rowset name=\"jumpCloneImplants\" key=\"jumpCloneID\" columns=\"jumpCloneID,typeID,typeName\"
|
167
|
+
/>\r\n <jumpActivation>0001-01-01 00:00:00</jumpActivation>\r\n <jumpFatigue>0001-01-01
|
168
|
+
00:00:00</jumpFatigue>\r\n <jumpLastUpdate>0001-01-01 00:00:00</jumpLastUpdate>\r\n
|
169
|
+
\ <balance>0.01</balance>\r\n <rowset name=\"implants\" key=\"typeID\"
|
170
|
+
columns=\"typeID,typeName\">\r\n <row typeID=\"9956\" typeName=\"Social
|
171
|
+
Adaptation Chip - Basic\" />\r\n <row typeID=\"10221\" typeName=\"Cybernetic
|
172
|
+
Subprocessor - Standard\" />\r\n <row typeID=\"10208\" typeName=\"Memory
|
173
|
+
Augmentation - Standard\" />\r\n <row typeID=\"10212\" typeName=\"Neural
|
174
|
+
Boost - Standard\" />\r\n <row typeID=\"10216\" typeName=\"Ocular Filter
|
175
|
+
- Standard\" />\r\n </rowset>\r\n <attributes>\r\n <intelligence>20</intelligence>\r\n
|
176
|
+
\ <memory>20</memory>\r\n <charisma>19</charisma>\r\n <perception>20</perception>\r\n
|
177
|
+
\ <willpower>20</willpower>\r\n </attributes>\r\n <rowset name=\"skills\"
|
178
|
+
key=\"typeID\" columns=\"typeID,skillpoints,level,published\">\r\n <row
|
179
|
+
typeID=\"3300\" skillpoints=\"1415\" level=\"2\" published=\"1\" />\r\n <row
|
180
|
+
typeID=\"3303\" skillpoints=\"8000\" level=\"3\" published=\"1\" />\r\n <row
|
181
|
+
typeID=\"3327\" skillpoints=\"256000\" level=\"5\" published=\"1\" />\r\n
|
182
|
+
\ <row typeID=\"3331\" skillpoints=\"3603\" level=\"2\" published=\"1\"
|
183
|
+
/>\r\n <row typeID=\"3386\" skillpoints=\"1415\" level=\"2\" published=\"1\"
|
184
|
+
/>\r\n <row typeID=\"3392\" skillpoints=\"1421\" level=\"2\" published=\"1\"
|
185
|
+
/>\r\n <row typeID=\"3402\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
186
|
+
/>\r\n <row typeID=\"3412\" skillpoints=\"750\" level=\"1\" published=\"1\"
|
187
|
+
/>\r\n <row typeID=\"3413\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
188
|
+
/>\r\n <row typeID=\"3426\" skillpoints=\"45255\" level=\"4\" published=\"1\"
|
189
|
+
/>\r\n <row typeID=\"3449\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
190
|
+
/>\r\n <row typeID=\"3411\" skillpoints=\"768000\" level=\"5\" published=\"1\"
|
191
|
+
/>\r\n <row typeID=\"3450\" skillpoints=\"8000\" level=\"3\" published=\"1\"
|
192
|
+
/>\r\n <row typeID=\"3318\" skillpoints=\"90510\" level=\"4\" published=\"1\"
|
193
|
+
/>\r\n <row typeID=\"3393\" skillpoints=\"250\" level=\"1\" published=\"1\"
|
194
|
+
/>\r\n <row typeID=\"3424\" skillpoints=\"2829\" level=\"2\" published=\"1\"
|
195
|
+
/>\r\n <row typeID=\"3394\" skillpoints=\"500\" level=\"1\" published=\"1\"
|
196
|
+
/>\r\n <row typeID=\"3454\" skillpoints=\"1250\" level=\"1\" published=\"1\"
|
197
|
+
/>\r\n </rowset>\r\n <rowset name=\"certificates\" key=\"certificateID\"
|
198
|
+
columns=\"certificateID\" />\r\n <rowset name=\"corporationRoles\" key=\"roleID\"
|
199
|
+
columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtHQ\"
|
200
|
+
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtBase\"
|
201
|
+
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationRolesAtOther\"
|
202
|
+
key=\"roleID\" columns=\"roleID,roleName\" />\r\n <rowset name=\"corporationTitles\"
|
203
|
+
key=\"titleID\" columns=\"titleID,titleName\" />\r\n </result>\r\n <cachedUntil>2015-09-12
|
204
|
+
09:49:23</cachedUntil>\r\n</eveapi>"
|
205
|
+
http_version:
|
206
|
+
recorded_at: Sat, 12 Sep 2015 08:52:23 GMT
|
207
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,175 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
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
|
+
- Sat, 12 Sep 2015 08:52:20 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-12 08:52:21</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=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
29
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
30
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
31
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
32
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
33
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
34
|
+
http_version:
|
35
|
+
recorded_at: Sat, 12 Sep 2015 08:52:21 GMT
|
36
|
+
- request:
|
37
|
+
method: get
|
38
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?keyID=4669404&vCode=hushhush
|
39
|
+
body:
|
40
|
+
encoding: US-ASCII
|
41
|
+
string: ''
|
42
|
+
headers:
|
43
|
+
User-Agent:
|
44
|
+
- excon/0.45.4
|
45
|
+
response:
|
46
|
+
status:
|
47
|
+
code: 200
|
48
|
+
message: ''
|
49
|
+
headers:
|
50
|
+
Content-Type:
|
51
|
+
- application/xml; charset=utf-8
|
52
|
+
Access-Control-Allow-Origin:
|
53
|
+
- "*"
|
54
|
+
Date:
|
55
|
+
- Sat, 12 Sep 2015 08:52:20 GMT
|
56
|
+
body:
|
57
|
+
encoding: UTF-8
|
58
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
59
|
+
\ <currentTime>2015-09-12 08:52:21</currentTime>\r\n <result>\r\n <rowset
|
60
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
61
|
+
\ <row name=\"Blondie Blond\" characterID=\"93051887\" corporationName=\"Carl
|
62
|
+
Malus Corporation\" corporationID=\"98279136\" allianceID=\"0\" allianceName=\"\"
|
63
|
+
factionID=\"0\" factionName=\"\" />\r\n <row name=\"Adrian Dent\" characterID=\"810699209\"
|
64
|
+
corporationName=\"Caldari Provisions\" corporationID=\"1000009\" allianceID=\"0\"
|
65
|
+
allianceName=\"\" factionID=\"0\" factionName=\"\" />\r\n </rowset>\r\n
|
66
|
+
\ </result>\r\n <cachedUntil>2015-09-12 09:48:16</cachedUntil>\r\n</eveapi>"
|
67
|
+
http_version:
|
68
|
+
recorded_at: Sat, 12 Sep 2015 08:52:21 GMT
|
69
|
+
- request:
|
70
|
+
method: get
|
71
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
72
|
+
body:
|
73
|
+
encoding: US-ASCII
|
74
|
+
string: ''
|
75
|
+
headers:
|
76
|
+
User-Agent:
|
77
|
+
- excon/0.45.4
|
78
|
+
response:
|
79
|
+
status:
|
80
|
+
code: 200
|
81
|
+
message: ''
|
82
|
+
headers:
|
83
|
+
Content-Type:
|
84
|
+
- application/xml; charset=utf-8
|
85
|
+
Access-Control-Allow-Origin:
|
86
|
+
- "*"
|
87
|
+
Date:
|
88
|
+
- Sat, 12 Sep 2015 08:52:20 GMT
|
89
|
+
body:
|
90
|
+
encoding: UTF-8
|
91
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
92
|
+
\ <currentTime>2015-09-12 08:52:21</currentTime>\r\n <result>\r\n <rowset
|
93
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
94
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
95
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
96
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
97
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
98
|
+
http_version:
|
99
|
+
recorded_at: Sat, 12 Sep 2015 08:52:21 GMT
|
100
|
+
- request:
|
101
|
+
method: get
|
102
|
+
uri: https://api.eveonline.com/account/Characters.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
103
|
+
body:
|
104
|
+
encoding: US-ASCII
|
105
|
+
string: ''
|
106
|
+
headers:
|
107
|
+
User-Agent:
|
108
|
+
- excon/0.45.4
|
109
|
+
response:
|
110
|
+
status:
|
111
|
+
code: 200
|
112
|
+
message: ''
|
113
|
+
headers:
|
114
|
+
Content-Type:
|
115
|
+
- application/xml; charset=utf-8
|
116
|
+
Access-Control-Allow-Origin:
|
117
|
+
- "*"
|
118
|
+
Date:
|
119
|
+
- Sat, 12 Sep 2015 08:52:21 GMT
|
120
|
+
body:
|
121
|
+
encoding: UTF-8
|
122
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
123
|
+
\ <currentTime>2015-09-12 08:52:21</currentTime>\r\n <result>\r\n <rowset
|
124
|
+
name=\"characters\" key=\"characterID\" columns=\"name,characterID,corporationName,corporationID,allianceID,allianceName,factionID,factionName\">\r\n
|
125
|
+
\ <row name=\"Quint Slade\" characterID=\"95512059\" corporationName=\"Imperial
|
126
|
+
Academy\" corporationID=\"1000166\" allianceID=\"0\" allianceName=\"\" factionID=\"0\"
|
127
|
+
factionName=\"\" />\r\n </rowset>\r\n </result>\r\n <cachedUntil>2015-09-12
|
128
|
+
09:48:16</cachedUntil>\r\n</eveapi>"
|
129
|
+
http_version:
|
130
|
+
recorded_at: Sat, 12 Sep 2015 08:52:21 GMT
|
131
|
+
- request:
|
132
|
+
method: get
|
133
|
+
uri: https://api.eveonline.com/char/ContactList.xml.aspx?characterID=95512059&keyID=4278167&vCode=supersecretstuff
|
134
|
+
body:
|
135
|
+
encoding: US-ASCII
|
136
|
+
string: ''
|
137
|
+
headers:
|
138
|
+
User-Agent:
|
139
|
+
- excon/0.45.4
|
140
|
+
response:
|
141
|
+
status:
|
142
|
+
code: 200
|
143
|
+
message: ''
|
144
|
+
headers:
|
145
|
+
Content-Type:
|
146
|
+
- application/xml; charset=utf-8
|
147
|
+
Access-Control-Allow-Origin:
|
148
|
+
- "*"
|
149
|
+
Date:
|
150
|
+
- Sat, 12 Sep 2015 08:52:21 GMT
|
151
|
+
body:
|
152
|
+
encoding: UTF-8
|
153
|
+
string: "<?xml version='1.0' encoding='UTF-8'?>\r\n<eveapi version=\"2\">\r\n
|
154
|
+
\ <currentTime>2015-09-12 08:52:22</currentTime>\r\n <result>\r\n <rowset
|
155
|
+
name=\"contactList\" key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask,inWatchlist\">\r\n
|
156
|
+
\ <row contactID=\"3011819\" contactName=\"Sula Kate\" standing=\"0\"
|
157
|
+
contactTypeID=\"1376\" labelMask=\"0\" inWatchlist=\"False\" />\r\n <row
|
158
|
+
contactID=\"3012076\" contactName=\"Koikaski Uika\" standing=\"0\" contactTypeID=\"1376\"
|
159
|
+
labelMask=\"0\" inWatchlist=\"False\" />\r\n <row contactID=\"3013320\"
|
160
|
+
contactName=\"Ahmobah Hethiba\" standing=\"0\" contactTypeID=\"1373\" labelMask=\"0\"
|
161
|
+
inWatchlist=\"False\" />\r\n <row contactID=\"3016824\" contactName=\"Okada
|
162
|
+
Laah\" standing=\"0\" contactTypeID=\"1376\" labelMask=\"0\" inWatchlist=\"False\"
|
163
|
+
/>\r\n <row contactID=\"93273990\" contactName=\"Carl Malus\" standing=\"10\"
|
164
|
+
contactTypeID=\"1375\" labelMask=\"0\" inWatchlist=\"True\" />\r\n <row
|
165
|
+
contactID=\"810699209\" contactName=\"Adrian Dent\" standing=\"10\" contactTypeID=\"1375\"
|
166
|
+
labelMask=\"0\" inWatchlist=\"True\" />\r\n </rowset>\r\n <rowset name=\"contactLabels\"
|
167
|
+
key=\"labelID\" columns=\"name\" />\r\n <rowset name=\"corporateContactList\"
|
168
|
+
key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask\"
|
169
|
+
/>\r\n <rowset name=\"corporateContactLabels\" key=\"labelID\" columns=\"name\"
|
170
|
+
/>\r\n <rowset name=\"allianceContactList\" key=\"contactID\" columns=\"contactID,contactName,standing,contactTypeID,labelMask\"
|
171
|
+
/>\r\n <rowset name=\"allianceContactLabels\" key=\"labelID\" columns=\"name\"
|
172
|
+
/>\r\n </result>\r\n <cachedUntil>2015-09-12 09:07:22</cachedUntil>\r\n</eveapi>"
|
173
|
+
http_version:
|
174
|
+
recorded_at: Sat, 12 Sep 2015 08:52:22 GMT
|
175
|
+
recorded_with: VCR 2.9.3
|