HI, I am trying to integrate paypal using GET method instead of POST. Is it posible to do it? IPN is not working in this case. Code as follows: <?php $url = "https://www.sandbox.paypal.com/cgi-bin/webscr"; $parameters = '?cmd=_xclick&business=samir_1186414131_biz@yahoo.com&invoice=123¤cy_code=USD&no_shipping=23423&item_name=test item&item_number=321&amount=232&return=http://www.bdjokes.com¬ify_url=http://www.bdjokes.com/register.php'; header("location:$url.$parameters") ?> PHP:
As far as I know, PayPal's API only takes Post back using, well, the POST method. They also provide good sample PHP code which you can use Jay
Actually I am using existing project and it is restricted to use old code. But I found paypal is not working. Could you please tell anyone that is it possible to integrate using GET? Thanks