Some problems now with Esi quickness. I am trying to get the queue of a character in space, new bean not NPE finished yet. I update her yesterday without problems, five minutes now and i get trash and bad results, No change in my code. Check tomorrow.
Those are two separate issues. The slowdown is due to some issues with ESI right now, we should know more once CCP get to the office. Join us on Tweetfleet for live discussion.
Also, feel free to request an invite to tweetfleet chribba. In the esi channel you’ll often get warnings of ESI status (we even have friendly bot functions to check it!) more quickly. Tweetfleet Slack Invites - Fuzzwork Enterprises
Correct, there’s been intermittent failures all day.
As for the versioning, are you on /latest or /_latest? The latter maps to versioned routes. You should avoid using /latest in favour of versioned endpoints, use underscore routes fo codegen
If I were to update my proxy to send to v4 it would work for that specific request but for example /status/ would fail since it only has v1, but /latest/status/ works.
If I replace that with _latest however I only get a 404. Maybe I need to refresh my documentation reading Obviously being able to use the latest without any modification would be best overall.
the latest definition is the one for which each path goes to *latest/*version
the _latests definition is the one for which each path has a specific version, eg v1/.
if you build against latest, the route you are given (eg latest/player_by_id) may become invalid later.
if you build against _latests, the route you are given (eg v1/player_by_id) will still be valid even when latest version wil have changed.