Open
Description
The Untappd provider uses GET requests and sends the token request parameters in both the query string and the request form using formurl-encoding, which is a strong sign something is not right as GET requests are not expected to have a content attached (.NET Core's HttpClient
allows it, but on .NET Framework, the following code would throw an exception:)
We should determine whether this monstrosity is 100% required or remove the request form part if it's not.
/cc @martincostello