-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slashes problem #6
Comments
if you want to put strings with strange characters in URLs, you usually need to URL encode them. try URL encoding AC/DC here and you'll see it's AC%2FDC . so your search string should probably be:
|
oops, meant to say try URL encoding here: http://meyerweb.com/eric/tools/dencoder/ |
Forgot to tell you, Tried that as well, but I don't get any output. It doesn't find it. |
That sounds like a bug then - maybe when Rester is processing parameters that come from URL's it needs some special escaping or is accidentally filtering too hard. Guess someone will need to dive into the code. |
How can I search for a string with slashes like "AC/DC" ?
GET http://api.example.com/bands/AC/DC
I've tried like:
GET http://api.example.com/bands/AC\/DC
and
GET http://api.example.com/bands/%AC/DC%
But I can't get it to work , any help ?
The text was updated successfully, but these errors were encountered: