Microflow Call Rest Issue

1
Hi Expert, I have a POST URL having two parameters access_token & Message. eg: https://graph.facebook.com/v17.0/102886584/comments?message=Thank you for your feedback&access_token=EAAEEgiJ2UWoBA   In Postman & even in the nanoflow POST method it is working fine, but in microflow, Call rest it shows an “illegal character in query” error. Not sure why, the same URL is working in Postman and Nanoflow POST methods.   Did anyone face such an issue? Please help me to fix this error   Thank you  
asked
1 answers
1

Hi Kiran, 

 

Have you tried encode the parameter content?

 

https://docs.mendix.com/refguide/string-function-calls/#urlEncode

 

Ie: String Template

https://graph.facebook.com/v17.0/102886584/comments?message={1}&access_token={2}

var1: urlEncode($message)

var2: $token

 

Att

answered