Page 1 of 1

The "+" sign in messages doesn't go through

Posted: 4. Dec 2020, 00:10
by Ragnarok1er
Hi,

I'm a fan of your service and have bought several API packages already. But for some reason, the "+" sign in my messages doesn't show on my phone.

Is this a known issue ? Is there something I can do to fix it ?

Image

Image

Re: The "+" sign in messages doesn't go through

Posted: 4. Dec 2020, 08:36
by admin
Hello,

you have to encode special character!

+ = %2B

use the pushsafer encoder!
https://www.pushsafer.com/de/url-encoder-decoder

Re: The "+" sign in messages doesn't go through

Posted: 4. Dec 2020, 18:09
by Ragnarok1er
This is annoying, but it works. Thanks !

Re: The "+" sign in messages doesn't go through

Posted: 4. Dec 2020, 20:59
by admin
encoding usage in python

Code: Select all

>>> import urllib as ul
>>> ul.quote("1+1=2")

=== 1%2B1%3D2