Reputation: 309
In a URL you can do GET arguments (EX: http://www.google.com?hello=world) how would I be able to include an email address in this format? In a perfect world I would like to be able to do http://[email protected] but when I try it now the @ symbol is messing it up. Would I have to convert it to a web safe text before sending the HTTP Request and then convert it back on the server? Thanks in advance!
Upvotes: 0
Views: 44
Reputation: 3415
You can try url encoding the @ sign, that would involve replacing the @ with %40
Upvotes: 1