Is there seriously not a way natively to URL Encode the value of a query string parameter that has a "+" character in it?
e.g.
me+blah@domain.net
to
me%2Bblah%40@domain.net
?
I tried solutions like posted in these other questions, but those do not properly encode that email.
A swift solution would be preferred as that is what I am working in at the moment, but I am capable of translating Objective-C Code to swift code for the most part.
Specifically I am trying to x-www-form-urlencoded
encode query string values in the body of POST request.