REST API删除操作将URL作为参数传递

时间:2018-06-01 15:20:55

标签: rest

我有一个其他订阅者资源,如果订阅者符合topic-name,country,lob和url的条件,我需要删除订阅者。

http://localhost:8080/subscriber/topics/ {主题的名称} / {国家} / {高球} / {URL}

如何通过URL转义特殊字符来发送删除资源的请求?

以下示例:

http://localhost:8080/subscriber/topics/FNOL/UK/mariane/https://endpoint.com

1 个答案:

答案 0 :(得分:1)

需要对{url}路径段进行编码。

http://localhost:8080/subscriber/topics/FNOL/UK/mariane/https%3A%2F%2Fendpoint.com

https://en.wikipedia.org/wiki/Percent-encoding