payment

Processing payments to users in iOS

安稳与你 提交于 2019-12-02 11:23:54
I'm exploring whether it's possible for me to implement an idea I've had in iOS. However, the idea depends on being able to give users money. Is this possible in iOS? I know Apple wants you to use StoreKit when taking money from users (in-app purchases, etc), but is there even a mechanism in StoreKit to give money to users, and if not, do the iOS rules let one use a third-party service like PayPal to give users money? Yes, one can use a third party service like Paypal for payment. To implement Paypal mechanism go through the following steps. 1) Download Mobile Payment Libraries for iOS form

Charging existing card and customer with security code on stripe

ぃ、小莉子 提交于 2019-12-02 03:54:54
问题 We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) {

EXPECTED_INTEGER — Issues with Square payment portal

无人久伴 提交于 2019-12-02 02:19:02
问题 I'm having issues accepting payment through my ecommerce site. This only seems to happen randomly, I've accepted payment previous without issue but every so often this happens. Square API didn't have any description with the error code. Array ( [0] => stdClass Object ( [category] => INVALID_REQUEST_ERROR [code] => EXPECTED_INTEGER [detail] => Expected an integer value. [field] => amount_money.amount ) ) Order status changed from Pending payment to Failed. 回答1: This error occurs whenever you

Charging existing card and customer with security code on stripe

…衆ロ難τιáo~ 提交于 2019-12-02 00:50:59
We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) { var customer = _customerProvider.GetLoggedInCustomer(customerId); //returns the customer_id e.g. cux

PayPal Sandbox Error: Cookies are blocked

人走茶凉 提交于 2019-12-01 20:55:40
问题 I was working with paypal sandbox account. It was working fine. But, now it shows the following error. The cookies are enabled. I tried using different browser and a different computer. Still I'm getting the same error. I tried clearing the cookies and cache. But it didn't work. Any solution? 回答1: Please turn on cookies to check out This is a Paypal's issue which affects Express Checkout on the PayPal Sandbox. Paypal announced that there is no alternative workaround at the moment. Reference:

“Suspected Fraud” status after compeleting the payment in magento?

爱⌒轻易说出口 提交于 2019-12-01 13:54:39
I have made my custom module in magento, in which I have set discount in dynamically. I am using following code for this. But when I have completed the payment procedure, the order status should be ' processing ' but instead of this order status become " Suspected Fraud ". Please let me know what I have done wrong. Although discount added successfully in order information. $order->setData('base_discount_amount', $discountAmt); $order->setData('base_discount_canceled', $discountAmt); $order->setData('base_discount_invoiced', $discountAmt); $order->setData('base_discount_refunded', $discountAmt)

Credit card crediting and debiting / ACH crediting and debiting through Api without user interaction

谁都会走 提交于 2019-12-01 13:18:21
I'm looking for a way to automate a transfer from one credit card to another credit card or from one bank account to another bank account, without the end user having to login to something like paypal or amazon payments to complete the process (by transferring their on-line balance to their bank account). This is extension to the earlier question. API For Direct Deposit (ACH, EFT, Whatever) Anybody solved this. Could you suggest the answer? [EDIT] I know that PCI compliant issues will be there to store credit card info in database. So I am checking for an API which saves saves the info and

Unable to identify AFL on a smart card

淺唱寂寞╮ 提交于 2019-12-01 12:42:09
问题 I'm working to get useful data from a VISA (such as PAN, expiry date...) credit card using a list of AIDs I got stuck. I have been able to access to all the data manually. Using the next tutorial: http://www.openscdp.org/scripts/tutorial/emv/reademv.html >>00 A4 04 00 07 A0 00 00 00 03 10 10 00 In ASCII: <<o<EM>„<BEL> <0><0><0><ETX><DLE><DLE>¥<SO>P<EOT>VISA¿<FF><ENQ>ŸM<STX><VT><LF><0> In Hexadecimal: <<6F 19 84 07 A0 00 00 00 03 10 10 A5 0E 50 04 56 49 53 41 BF 0C 05 9F 4D 02 0B 0A 90 00

Credit card crediting and debiting / ACH crediting and debiting through Api without user interaction

≯℡__Kan透↙ 提交于 2019-12-01 11:36:46
问题 I'm looking for a way to automate a transfer from one credit card to another credit card or from one bank account to another bank account, without the end user having to login to something like paypal or amazon payments to complete the process (by transferring their on-line balance to their bank account). This is extension to the earlier question. API For Direct Deposit (ACH, EFT, Whatever) Anybody solved this. Could you suggest the answer? [EDIT] I know that PCI compliant issues will be

Paypal get transaction details with pay key using php curl

那年仲夏 提交于 2019-12-01 09:35:27
I get response after successful android paypal payment. The response was below. { "response": { "state": "approved", "id": "PAY-6PU626847B294842SKPEWXHY", "create_time": "2014-07-18T18:46:55Z", "intent": "sale" }, "client": { "platform": "Android", "paypal_sdk_version": "2.11.0", "product_name": "PayPal-Android-SDK", "environment": "mock" }, "response_type": "payment" } { "short_description": "Pay List Payment", "amount": "100", "intent": "sale", "currency_code": "USD" } then I use the PAY-6PU626847B294842SKPEWXHY pay key and get the transaction details using PHP curl GET request with the