You can encrypt the parameter string and then send it as a message
Encrypted URL Form:
myAppName:
Now, when you receive a call in your application, you must output encryptedt_data from the URL and decrypt it before doing anything.
Decrypted URL Form:
myAppName:
In my opinion, this is the best and easiest way to do this. For best encryption / decryption practices, check out AES Encryption for NSString on iPhone and this .
As long as you are not worried about security, you can always use a reduced encryption string size to reduce the URL. This option is provided in the Github library.
Hemang
source share