Problem when the entity value attribute contain special character
Hello I have tied to insert in OCB an entity with a password attribute codified:
{
"id": "prueba-tipo-string2",
"type": "StringParser",
"dateObserved": {
"type": "DateTime",
"value": "2020-08-13T08:56:56.00Z"
},
"password": {
"type": "text",
"value": "U2FsdGVkX10bFP8Rj7xLAQDFwMBphXpK/+leH3mlpQ="
}
}
- OCB always response to me with the following error: "found a forbidden character in the value of an attribute"
- In Postman
{ "error": "BadRequest", "description": "Invalid characters in attribute value" }
If you URL-encode your value, the problem goes away- is that an OK solution for you?