Questions tagged [api-eveonline]

All questions concerning the usage of the APIs for the Sci-Fi MMORPG Eve Online. Covering all three existing APIs: XML API, CREST API, ESI API

This tag is for questions about the usage of the APIs for the Sci-Fi MMORPG Eve Online. It can be used for all three currently existing APIs:

  • XML API
  • CREST API
  • ESI API (link to Swagger documentation)

For a general documentation about all three APIs follow this link.

The developer of the game also has a website dedicated to 3rd party developers. This is also the place where developers can register their 3rd party applications for OAuth access.

19 questions
0
votes
2 answers

Return all rows from table one even if table two is empty or partial results found

I am trying to return all the results from table one, AKA ship_skill_tree, while matching up the rows found in table two, AKA character_sheet_skills, even if the rows do not exist in table two. SELECT c.`level` , t.`skillLevel` AS levelNeeded,…
0mni
  • 45
  • 1
  • 8
0
votes
1 answer

Get external page content regardless of response type

I'm working with an API that I recently noticed is failing in the code some of the time. I retrieve it via file_get_contents, and I'm getting the error "failed to open stream: HTTP request failed!" I plugged the URL into the browser directly and I…
Rohit
  • 3,018
  • 2
  • 29
  • 58
0
votes
2 answers

Eve API xml to php

I have managed to create a mysql database with itemIDs and Item types. so far all I have managed to do is generate a button that opens a url to eve api that grabs the prices from eve central. I can't currently post images. The php code then…
timmac15
  • 59
  • 3
0
votes
3 answers

Loop through XML and only "look" at specific ID

in my mysql database I have several rows each containing an item id. What I would like to do is update each of the "placidRate" columns for what is contained within the XML document of the very large URL below. Example, for typeID 1230, it should…
mhopkins321
  • 2,993
  • 15
  • 56
  • 83
1
2