I send a request, response contains URL to the next page. I need call this url, if it exist.
`@GetMapping(value = "{nextUri}")
SearchResponse getNextPage(@PathVariable("nextUri") String nextUri);`
But when i try to call this feign client method, i receive an error. My URL contains invalid characters, for example:
Correct url: search?view=full&per_page=10
Incorrect url in logs after call feign client method: search%3Fview%3Dfull%26per_page%3D10
How can i deny replacing that characters: ‘=’, ‘?’, ‘&’
I’ll try using some decoders, encoders, string.replace, but its doesnt help
1