-
Type:
Bug
-
Status: Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: rest (dev)
-
Labels:None
The dev rest api has multiple endpoints that can take region entry keys either as path variables or as query parameters. If the key contains a "/" then it can cause problems with parsing the URL. The normal thing a user should do is utf-8 encode by changing "/" to "%2F". But this will not work since the dev rest api does not decode the keys. It does decode the region name.
The endpoints that are not decoding keys are:
GET, PUT, and DELETE on /v1/{region}/{keys} POST on /v1/{region}?key={key}
- links to