These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
ESI API Authentication
https://esi.tech.ccp.is/latest/universe/structures/1024235980117/?datasource=tranquility
string link = "https://esi.tech.ccp.is/latest/markets/10000032/orders/?datasource=tranquility&order_type=all&page=1&type_id=2329";HttpWebRequest apiRequest;apiRequest = (HttpWebRequest)WebRequest.Create(link);apiRequest.Credentials = null;apiRequest.UseDefaultCredentials = false;apiRequest.UserAgent = "EVE Planetary Planner";apiRequest.UserAgent = @"Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4";using (HttpWebResponse apiResponse = (HttpWebResponse)apiRequest.GetResponse()){ Stream dataStream = apiResponse.GetResponseStream(); StreamReader reader = new StreamReader(dataStream); string strResponse = reader.ReadToEnd(); // do things here}
Creator of The EVE Planetary Planner