recurring-billing

Testing whole cycle of paypal recurring payment at sandbox

混江龙づ霸主 提交于 2019-12-23 11:13:21
问题 I am currently trying to implement paypal recurring payment and I would like to test "whole cycle". I found this article http://www.paypalobjects.com/en_US/ebook/PP_Sandbox_UserGuide/testing_recurringpayments.html and also some references in stackoverlfow that it should work. But for me it does not seem to work. Maybe I have to dig into code for that but I was wondering should this actually work? I am using https://github.com/thenbrent/paypal-digital-goods library and I subscription details

Eway Recurring Payment in android

最后都变了- 提交于 2019-12-14 03:22:10
问题 how to resolve This is response when i called soap service, eway document provide only api but not solution when i getting this type of response. anyType{Result=Fail; ErrorSeverity=Error; ErrorDetails=The 'eWayCustomerID' element has an invalid value according to its data type.; RebillCustomerID=0; } this my code public void callWebservice() { SoapObject Request = new SoapObject(NAMESPACE, METHOD_NAME); Request.addProperty("customerTitle", "Mr"); Request.addProperty("customerFirstName", "kk")

What do the src and sra form fields for PayPal IPN HTML form do?

谁说我不能喝 提交于 2019-12-14 02:36:10
问题 Example: paypal recurring payments form When I have one enabled, it changes "for one month" to "for each month" on the checkout form, so why do I need two of them? I've looked for the variables here and cannot find it. https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNandPDTVariables/#id091EB0901HT 回答1: You can see descriptions for those (and any other available parameter) in the PayPal Standard Variables Documentation. 来源: https://stackoverflow.com

Paypal UpdateRecurringPaymentsProfile returning internal error

假装没事ソ 提交于 2019-12-13 06:56:55
问题 I am trying to update a paypal recurrent payment profile with NVP. I want to change the payment amount. The request I am sending to is: METHOD=UpdateRecurringPaymentsProfile&VERSION=86&PWD=1404892100&USER=XXX@YYY.com&SIGNATURE=ASEEEEEEECCCCCCCC&ProfileID=I-8N1W7089GB47&Note=testing&Amount=105 This request is failing with the following message [TIMESTAMP] => 2014%2d11%2d04T19%3a13%3a05Z [CORRELATIONID] => 5c6026b1dedec [ACK] => Failure [L_ERRORCODE0] => 10001 [L_SHORTMESSAGE0] => Internal

how to call CreateRecurringPaymentsProfile after CallShortcutExpressCheckout in paypal recurring profile express checkout

非 Y 不嫁゛ 提交于 2019-12-13 04:36:36
问题 I have downloaded and implemented this paypal integration lib on my website. https://github.com/hrendoh/PayPal-Express-Checkout-example The recurring profiles are not getting created. The function call for Express checkout is $resArray = CallShortcutExpressCheckout ($paymentAmount, $currencyCodeType, $paymentType, $returnURL, $cancelURL); $ack = strtoupper($resArray["ACK"]); if($ack=="SUCCESS" || $ack=="SUCCESSWITHWARNING") { // if SetExpressCheckout is returned with success, move to paypal

multiple captures on a single credit card authorization

你说的曾经没有我的故事 提交于 2019-12-12 13:05:33
问题 In lieu of saving credit card information locally for recurring payments I was thinking I could request an authorization from a payment gateway for a certain amount and then capture that amount multiple times, every month or so. One Payment Gateway's documentation says "Captures can be submitted for an amount equal to or less than the original authorization". That's a little bit of a problem since these recurring payments would be variable (ie. you're billed based on how many API requests you

What is the response for RESTORE_TRANSACTIONS in case of subscription bought twice?

最后都变了- 提交于 2019-12-12 05:40:04
问题 I can't test this myself, because there is no way to completely terminate subscription, apparently. So, I want to test the following use case: user buys subscription, cancel's it (or it expires), than user buys same subscription. What will I get with RESTORE_TRANSACTIONS response? Will I get two items with same item id, different purchase tokens and different state? Or purchaseToken will remain the same? I'm afraid that there will be only one subscription with different order ID and purchase

Paypal API - Modify Recurring Payment Profile

删除回忆录丶 提交于 2019-12-12 03:46:11
问题 We currently handle subscriptions on our site via Paypal with the CreateRecurringPaymentsProfile API. This created a monthly subscription for 7.99 a month. We would like to launch an offer where the user could change that monthly subscription for an annual subscription which would be much more convenient. I looked into the APIs and found the UpdateRecurringPaymentsProfile API. I tested it and found that I could change the amount charged monthly, say from 7.99 to 5.99. However I can find no

Eway Payment Gateway: Add Headers using SOAP Service in Recuring payment Using Java

若如初见. 提交于 2019-12-12 02:06:48
问题 I am trying to use eway payment gateway. In this i am using Recurring payment. For recurring they provide WSDL file, by using Maven Generator, i was creating java classes from WSDL file. When i was trying to call services, it generate an error, because the service need authentication information in SOAP header. From this Link i found the Solution to add header in SOAP request using Jaxb Object. After that, when i call the SOAP services it generates different error, which confused me.

PayPal Recurring Payments with express checkout limitations

*爱你&永不变心* 提交于 2019-12-11 23:29:41
问题 I have some questions about recurring payments using express checkout. On your developer web at the recurring payment page is stated: To be able to create a recurring payments profile for the buyer, you must ensure that the buyer's PayPal account includes an active credit card. You can create a maximum of 10 recurring payments profiles during checkout. You can increase the profile amount by only 20% in each 180-day interval after you create the profile. For the first statement: can you check