Java access to the api

#1 - May 21, 2013, 11:04 a.m.
Blizzard Post

I’m working on integrating the API with java.
There’s a couple of things I’ve done. It can parse information that comes from the json files. I threw a couple of gui’s together so that you can select a server and it lists all of the events on that server and their status. The parser should work with most the json files (needs to be slightly adapted for the recipes).

Anyway, here’s a link for the code.

http://code.google.com/p/gw2-java-api/

#9 - May 21, 2013, 6:01 p.m.
Blizzard Post

Have something working for now:
http://code.google.com/p/j-gw2-api/

It includes the StartCom Root Certificate as Byte array, if you don’t want to download your own certificate, but it also allows you to use a .crt file on your computer.

The JSON object are the official implementation over at json.org.

Edit:
And yeah, I know it is missing the HostnameVerifier.
So it is not entirely save for now, but it’s a beginning.
But I guess the default one will do the job good enough. Have to take a look how that one is implemented to see if it really does verify the hostnames correctly when using custom KeyStores, Certificates etc.

Awesome, you rock! Thanks so much for doing this.