Open ronnieschuurbiers opened 5 years ago
When I try to check if an object exists with object name ü.jpg I get a 400 bad request error. Other special characters like @.jpg work fine.
ü.jpg
@.jpg
Is there any documentation what characters are (not) allowed for an object name?
I found the same. Turns out using rawurlencode() does the trick!
$container->getObject(rawurlencode('name containing special characters'));
When I try to check if an object exists with object name
ü.jpg
I get a 400 bad request error. Other special characters like@.jpg
work fine.Is there any documentation what characters are (not) allowed for an object name?