J
Jens Dahlin
Guest
I don't know about the SMS part but there are some encodings you need to do for urls: First of all: you cannot use spaces in a URL. test tast tust (without any quotes) should be sent as test+tast+tust (spaces replaced with +). For example: server?value=test+tast+tust “test tast tust” with quotes should be encoded to %22test+tast+tust%22 (“ replaced with %22 and spaces with +) For example: server?value=%22test+tast+tust%22
Continue reading...
Continue reading...