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
5
votes
3 answers

does not contain a definition for 'GetAwaiter'

Im getting the below error with the below set of code, It is erroring on the 'alliancelookup' line, I'm not sure what i'm doing wrong but I couldn't see anything myself. The query im running to crest seems to be running fine but It seems the issue…
user4366589
3
votes
4 answers

recommendationXPath seems valid but Google spreadsheet just gives "import internal error"

I'm trying to use Google spreadsheet to return the @name attribute from a element when @characterID has a certain value. Google spreadsheet gives an "import internal error" when trying to use the…
Mosseman
  • 55
  • 2
  • 6
1
vote
1 answer

Cannot access array element. use result of one ajax request to another ajax request

//global variables var corpArray = new Array(); //store corp classes instances var corpId = new Array(); //store corp id's window.onload = init(); function init() { getNpcCorpId(); console.log(corpId); getCorpNames(corpId[5]); } //get…
1
vote
1 answer

Eve Online ESI Curl Authorization

Trying my hand at using the new Eve ESI interface but am receiving the following error response when trying to authenticate: HTTP/1.1 401 Unauthorized Cache-Control: private Server: Microsoft-IIS/8.5 Request-Context:…
tllewellyn
  • 903
  • 2
  • 7
  • 28
1
vote
1 answer

Auth0 AuthenticationAPI using AuthenticationRequest

I am trying to make a console app that consumes the EVE online API, it uses Auth0 verification for some API requests Swagger details https://esi.tech.ccp.is/ui/ Auth0 url https://login.eveonline.com/oauth/authorize? i am currently trying to login…
Zarwalski
  • 69
  • 1
  • 9
1
vote
1 answer

Eve Online auth through URL query

How can I authenticate through URL in EVE REST API? In docs with curl, it looks like this: $ curl -i http://example.com HTTP/1.1 401 UNAUTHORIZED Please provide proper credentials. $ curl -H "Authorization: Basic YWRtaW46c2VjcmV0" -i…
ARCAON
  • 61
  • 1
  • 7
1
vote
1 answer

Loop every skill and not only few of them

I'm trying to loop every skill that can be found in EVE Online (API Skilltree) but the following code only loop through the first 7 skill groups. $skilltree_url = file_get_contents('https://api.eveonline.com/eve/SkillTree.xml.aspx', 0, null,…
Airikr
  • 6,258
  • 15
  • 59
  • 110
0
votes
1 answer

Getting stuck with a few things with this code

Greeting. I am new to coding so these problems I am facing might be quite easy for some of you. I am trying to make a simple tool that takes an exported file and read the price data in the file. but first I need to be able to import the file that is…
0
votes
1 answer

User Login using API

I'm currently trying to create a simple application for my own use (I'm trying to learn iPhone Programming) and I want to know how you create a login page which will log a user in and store/keep them logged in via an API. I don't know where to begin…
Lee
  • 1
  • 1
0
votes
1 answer

Typescript and Swagger Codegen. What to include where?

So I've generated some swagger models and api services from the swagger file located at https://esi.tech.ccp.is/latest/swagger.json which gives me a file structure similar to: I've included the following files: app.module.ts // Eve ESI Swagger…
Alex Bailey
  • 1,260
  • 12
  • 27
0
votes
2 answers

Angular/Ionic Chaining HTTP Calls Out of Sync

I'm currently working with an API that's a bit of a pain :D The API doesn't return full information needed for my app and that means I have to make multiple calls to get the full information required. Also, I'm struggling to keep my head round it so…
Alex Bailey
  • 1,260
  • 12
  • 27
0
votes
1 answer

Deserializing a YAML file - Eve Online based

I have been struggling with something on and off for about a week now. I am creating a program that can take a .yaml and parse it into an object for manipulation and output. The issue I have is an error with the YAMLDotNet package, When it gets to…
Sambridg
  • 1
  • 1
0
votes
2 answers

C# .net core POST Request

I am trying to setup a login via Oauth2 using EvE online's SSO system in .net core and am finding it impossible on the Post request stage. This is how I would have done it in the past with standard .net. Is anyone able to help me convert it…
user4366589
0
votes
2 answers

Eve online api get volume of object

Does anyone know what to query in the eve api to get the size (volume) in cubic meters m3 for an object in Eve online? I can get all the other stuff so it's not about accessing the servers. It's finding this part of the item data. For instance this…
user2130951
  • 2,601
  • 4
  • 31
  • 58
0
votes
1 answer

"XML content cannot be parsed"

Google spreadsheet gives me an error stating "Imported XML content cannot be parsed" when I try to use the IMPORTXML function. Cell…
1
2