-
-
Notifications
You must be signed in to change notification settings - Fork 286
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
Requests with param in path don't work properly and throw exception #243
Comments
Have you also read the bold text at the very beginning of this project's README? |
Hm... No, I've not paid attention to that bold text... P.S: I've fixed the issue |
@dargmuesli |
Thanks, this will be released as v6.5.2 :) |
Somehow the build fails with
I currently do not have enough time to look into this, but will do once that changes. |
I didn't get the build fail. I've used maven with command line to tests and build.
|
It's failing on Travis when trying the gpg sign build step. |
Got it fixed after countless tries. I really want to know what made it work now... |
Are you about the issue or sign build step? |
Well, about the sign build step. The issue was fixed by you ;) |
I use your client library to communicate with spotify api. It works well but I've caught exception with requests that contains path variables like
v1/albums/{id}
in request path. Library doesn't replace path variable key correctly.The project is for android. It configured with java 8.
I've added:
Line that fires exception:
240: builtPath = builtPath.replaceAll("\\{" + nameValuePair.getName() + "}", nameValuePair.getValue());
Code to reproduce:
Error Stack Trace:
The stacktrace is the same for both tests
Gradle config:
The text was updated successfully, but these errors were encountered: