Archomeda/Gw2Sharp

API accepts GUIDs in uppercase only

Closed this issue · 1 comments

Almost all endpoints accept GUIDs in uppercase. The only exception is the /v2/guild endpoint that is case insensitive. C# automatically converts a GUID into a lowercase string as per the official spec. Sadly, the API doesn't accept it.

The easiest fix is to manually convert all GUIDs into uppercase when formatting the URLs.

Fixed in 5912714