eve-esi icon indicating copy to clipboard operation
eve-esi copied to clipboard

Java Client for the EVE Swagger Interface (ESI)

Results 14 eve-esi issues
Sort by recently updated
recently updated
newest added

- [x] Update SsoApi - [x] Fix Tests - [x] Update templates

enhancement

I cherry-picked the first commit from https://github.com/burberius/eve-esi/pull/134, then regenerated the interface and fixed up tests. I also added the --public argument and some directions on how to run the SsoAuthTest...

https://developers.eveonline.com/blog/article/sso-endpoint-deprecations-2 Dev blog is down, temporary link: https://web.archive.org/web/20211009142752/https://developers.eveonline.com/blog/article/sso-endpoint-deprecations-2 - [x] Ensure refresh token rotation works - _Untested, but, code have been reviewed and looks correct..._ - [x] Add web/site flow...

It seems that if you use a custom okHttpClient in the ApiClientBuilder, that it won't get the async interceptor added and therefore won't work for async calls.

I have the situation that I am fetching an accessToken and a refreshToken through EveSSO. The point is that I have to persist the refreshToken (I am taking care of...

https://github.com/burberius/eve-esi/blob/f29725bc7ce51cdb80531ee9986a01003bf9c752/src/main/java/net/troja/eve/esi/ApiClient.java#L131 declares a variable called `tokenUrl` and initializes it with the empty string. The next if condition uses this variable by https://github.com/burberius/eve-esi/blob/f29725bc7ce51cdb80531ee9986a01003bf9c752/src/main/java/net/troja/eve/esi/ApiClient.java#L132 Here `"".equals(tokenUrl)` evaluates to `true`. Then, `!"".equals(tokenUrl)` is...

It would be desirable if api call template generation would include handling of "Bad Gateway" (-> retry) and "Not Found" (-> ApiException sub type) such that I don't have to...

Someone posted this repo on #esi It, may be something we can use for offline tests: https://github.com/antihax/mock-esi

enhancement