I am implementing PayPal in my Android application and I want to send multiple parameters to PayPal as query string with IPN URL.
For example
http://www.example.com/ipn/txnId=12&cartId=12
but the problem is when I use this URL as IPN URL PayPal gives me an error.
I have tried with URLEncoding but again no successful payment.
If I try with single parameter it is working.
Example
http://www.example.com/ipn/txnId=12
I encountered a problem that PayPal is not accept & characters in string
so I have tried to replace & with & and also \\& but it didn't help either.
I know I can set multiple parameters into a single variable and pass it to PayPal but I want to pass multiple parameters like query string.
How can I have PayPal accept my payment with multiple parameters?
EDIT
Currently i am using this code for encode URL but it fails.
protected String addLocationToUrl(String url){
if(!url.endsWith("?"))
url += "?";
List<NameValuePair> params = new LinkedList<NameValuePair>();
params.add(new BasicNameValuePair("txnId", "45"));
params.add(new BasicNameValuePair("cartId", "34"));
String paramString = URLEncodedUtils.format(params, "utf-8");
url += paramString;
return url;
}