paypal-sandbox

Paypal Sandbox API Internal Error

五迷三道 提交于 2019-12-03 08:48:54
I've been using Paypal Merchant SDK with Sandbox credentials for last few months and everything for working fine. But today, Im facing this strange problem, whenever I make an API call of SetExpressCheckout, I get Transaction failed due to internal error with error code 10001 .. I haven't changed anything in code, it just started to show up. Im using the github api for transaction: https://github.com/paypal/merchant-sdk-php/] 1 Here is the API Error Response SetExpressCheckoutResponseType Object ( [Token] => [Timestamp] => 2013-09-15T07:33:51Z [Ack] => Failure [CorrelationID] => 1325627aefe46

How do i get identity token in paypal sandbox?

醉酒当歌 提交于 2019-12-03 02:17:16
I don`t know where is the identity token on paypal sandbox. is the identity token same like api number ? Robert Visit the Profile via www.sandbox.paypal.com, then go to https://www.sandbox.paypal.com/businessmanage/preferences/website , turn on "auto return" and "payment data transfer" and then the identity token will appear under "Payment data transfer". If it does not display PDT token then try to purge cookies related to *.paypal.com and try the same process again. I solved this issue by following this. I found this from comment for this answer. PayPal has updated their UI a bit. To save

Looking for paypal payments tutorial [closed]

老子叫甜甜 提交于 2019-12-02 23:06:09
I am looking for a tutorial which will show me how to accept paypal payments as I am not having much luck with the documentation. In the tutorial, I just need to understand how to capture a unique identifier when the payment has been initiated, and then use the unique identifier to update the database record when payment confirms the payment via ipn. Does such a tutorial exist? Basically, I already have the payments working i.e. a user can make a payment and payment can send a notification to the ipn script, but I can't tell which payment paypal has accepted. There guide is pretty well written

How do I test Paypal subscription buttons with sandbox?

£可爱£侵袭症+ 提交于 2019-12-02 18:57:42
after 5 hours of research and reading outdated paypal documentation I finally give up! I need to test a simple paypal subscription button with the paypal sandbox. Button Code: <form action="https://www.sandbox.paypal.com/us/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="34CXHXVU2J8BY"> <input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online." style="border:none;padding:0;height:auto;width:auto">

Paypal IPNs not sending/being received on sandbox

↘锁芯ラ 提交于 2019-12-02 14:59:36
问题 I'm trying to use Paypal IPNs on the sandbox. I have a form that submits an express checkout: <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick" /> <input type="hidden" name="business" value="my-sandbox-merchant-account@test.com" /> <input type="hidden" name="item_name" value="Item 3" /> <input type="hidden" name="item_number" value="3" /> <input type="hidden" name="amount" value="5.00" /> <input type="hidden" name=

Get payment history on Paypal API

。_饼干妹妹 提交于 2019-12-02 12:11:35
问题 I need to find a way of getting a Paypal account holders payment history using the Paypal api. If we have a user's consent (i.e. we've already used the Permissions API to redirect them to Paypal, and they've consented to give us permissions to get details of payments to their account), what's the next step? I've seen a similar question here which talked about using GetTransactionDetails call, but that seems only to get details for a single transaction. Another answer mentioned the Payment

How to set mixture of recurring and one time payment in Paypal

…衆ロ難τιáo~ 提交于 2019-12-02 09:49:44
I'm using Paypal REST API to charge my subscriptions. My transaction includes a mixture of one-time purchase and recurring payment. One time purchase will charge a user amount X, and recurring payment should create recurring profile which will annually charge a user with amount Y. Here is what I have. First I call SetExpressCheckoutPayment with the following parameters: $orderParams = array( 'PAYMENTREQUEST_0_AMT' => "10", 'PAYMENTREQUEST_0_CURRENCYCODE' => 'GBP', 'PAYMENTREQUEST_0_ITEMAMT' => "10", 'LOGOIMG'=>"http://mywebsite.com/a.jpg", "MAXAMT"=>"100", "NOSHIPPING"=>"1", "ALLOWNOTE"=>"0",

Paypal Transactionsearch using Python

百般思念 提交于 2019-12-02 09:23:30
I have the necessary authentication details and I'm trying to do a TransactionSearch. I keep getting an error: TIMESTAMP=2013%2d09%2d07T19%3a06%3a35Z&CORRELATIONID=b7af040415e92&ACK=Failure&VERSION=0%2e000000&BUILD=7507921&L_ERRORCODE0=10002&L_SHORTMESSAGE0=Authentication%2fAuthorization%20Failed&L_LONGMESSAGE0=You%20do%20not%20have%20permissions%20to%20make%20this%20API%20call&L_SEVERITYCODE0=Error Here is my code: (timestamp, signature) = signaturegen.getAuthHeader(apiUser=settings.USERNAME, apiPass=settings.PASSWORD, accessTok=res2["token"], secTok=res2["tokenSecret"], httpMethod="POST",

paypal sandbox merchant account error

不想你离开。 提交于 2019-12-02 08:27:12
I have a website that I'm trying to hook paypal up to with a php script. php builds the query string and then submits to https://www.paypal.com/cgi-bin/webscr with the query string attached. I can verify that this works fine. I haven't processed a payment but it directs to PayPal with the correct quantities and prices, etc. However when I change to https://www.sandbox.paypal.com/cgi-bin/webscr I get an error when I try to process that says there was a problem with the merchants PayPal account. I have created several test accounts on PayPal sandbox but from what I can tell looking around it

Get payment history on Paypal API

喜夏-厌秋 提交于 2019-12-02 08:08:05
I need to find a way of getting a Paypal account holders payment history using the Paypal api. If we have a user's consent (i.e. we've already used the Permissions API to redirect them to Paypal, and they've consented to give us permissions to get details of payments to their account), what's the next step? I've seen a similar question here which talked about using GetTransactionDetails call, but that seems only to get details for a single transaction. Another answer mentioned the Payment.List method, but didn't give an example of how it's used. Can anyone point me in the right direction? I