We are sending an encrypted URL in sms message but in case there is a special character (Like +) at the end of the URL it is getting removed.
this means the input text for send_SMS action is completely right but the message is being received without the last letter(If it was only a +)
any advice what is the reason for this?
Thanks in advance
Hi Mina,
Use OS built in function EncodeUrl(Text)
Check this reference https://www.freecodecamp.org/news/url-encoded-characters-reference/
"There are only certain characters that are allowed in the URL string, alphabetic characters, numerals, and a few characters ; , / ? : @ & = + $ - _ . ! ~ * ' ( ) # that can have special meanings. "
Hope that it helps you