Suniagoz
(Chaichana Chompuviset)
1
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
loginerror
(Maciej Kuźmicz)
2
This should work:
"{""payload"":{""text"":""value1""}}"
Note that it uses " instead of “ or ”.
Suniagoz
(Chaichana Chompuviset)
3
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.
Suniagoz
(Chaichana Chompuviset)
5
There is no Variable name stringToEscape in my program bro
loginerror
(Maciej Kuźmicz)
6
Could you please share a sample project (without the sensitive data)? It seems super strange.
Suniagoz
(Chaichana Chompuviset)
7
Should I censored Endpoind and Token ?
Suniagoz
(Chaichana Chompuviset)
8
S
I think “Double quote” and {Brace Symbol} are problems
Suniagoz
(Chaichana Chompuviset)
9
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 )
system
(system)
Closed
10
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.