Https request wizard problem about symbol "

I have problem while trying to use another chat platform with UiPath

I use Synology Chat Client and Test Connecting by using Postman

Parameter Setting

Body setting

Result

and Then I use HTTP request wizard by following Postman Setting
but there is 2 error found


and also ask ChatGPT the answer was

“{”“payload”“: {”“text”": ““value1"”}}”

“{”“text”“: ““Test send””}”

but there is still not working.

Hope your guys find

This should work:

"{""payload"":{""text"":""value1""}}"

Note that it uses " instead of or .


I try to preview check there is another error

@Suniagoz,

It’s your variable issue. The variable with name stringToEscape is null or empty which is resulting in tis error. Check it.

There is no Variable name stringToEscape in my program bro

Could you please share a sample project (without the sensitive data)? It seems super strange.

Should I censored Endpoind and Token ?

S
I think “Double quote” and {Brace Symbol} are problems


I have found the solution,

To Escape Double Quote need to format to JsonObject

Example :
{“text”: “https://www.synology.com”}

format = “{”“text”“: ““https://www.synology.com””}”

and Use Deserialize JSON ( result = JsonObject )

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.