Please excuse me if this question has already been answered on StackOverflow.
I have a server-side service that can be accessed by the following URI: services/signIn/{email}
The {email} part is where the email goes. The problem is that emails contain a period, and this cannot be URL encoded. Therefore, the service does not work. And, I already tried replacing the period with %2E, but it does not work. What should I do?