URLEncodeText doesn't encode speciific characters

URLEncodeText doesn't encode speciific characters

Comments

  • Hi could someone help please,

    I have a problem with the URLEncodeText step, it doesnt encode the ( and ) charecters. Ive actually observed that the call we make replaces the space with a + but the braces are left behind. Whats the reason for this if im expecting %20 to be passed into my API call but its passing in + instead, is there a way around this?

    Thanks in advance!

  • Hi Lee,

    URL space encoding supports both + and %20. Details here: https://www.w3schools.com/tags/ref_urlencode.asp

    If you are looking to amend the + encoded character to %20 I would recommend adding a replace text in string step to your flow. Here you can configure the string so it amends any + to %20. Then use this output as your URL. The same step can be used to amend ( and ) to their respective encoding references.

Sign In or Register to comment.