Edit: format
I am trying to intigration paypal express
checkout in java play framework
Almost it's done But In Json
Response Which is given by paypal
it include approval_url :
"https://www.sandbox.paypal.com/cgi-bin/webscr?cmd\u003d_express-checkout\u0026token\u003dEC-7*******...
In this URL include
\u003d before _express-checkout , \u0026 before token word and \u003d before token response key...
What that string mean??? I need URL like
"https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-7***************"...
How can I get this???
Thanks in advance