payment

Checkout API Setup Guide references commands that kill test pages AND do not exist in API

被刻印的时光 ゝ 提交于 2019-12-13 03:56:21
问题 The following code snippets in the Checkout API Setup Guide at https://docs.connect.squareup.com/payments/checkout/setup references GetID() cause the page to fail and are not in the API: $checkoutId = $result->getId(); AND $checkoutUrl = $result->getCheckoutPageUrl(); In fact, I cannot find reference to those commands anywhere in the technical docs or API reference except on the Setup Guide. Is the Setup Guide wrong or am I missing something? Is Checkout not fully live? I am not sure why a

DocuSign Payments REST API create Tab

时光怂恿深爱的人放手 提交于 2019-12-13 03:23:12
问题 I am trying to create a sample formula tab in my DocuSign envelope creation for requesting a payment (REST API). I have successfully created the signHere tabs for many of our products but I am now asked to create a tab where the recipient can sign first and then make a payment. The payment gateways are set up (and tested through the normal DocuSign Account GUI) so I do not think the issue lies there. I am getting an "Error - Please enter a valid payment amount." once I attempt to finish...

Is it possible to create a market place style app with paypal?

别来无恙 提交于 2019-12-13 02:14:09
问题 I am working on a web application for a client and he wants the payflow to work sorta like this: Seller makes an offer for an item Customer purchases the item The seller sees the item is paid for but won't get the payment When the item has been marked shipped the payment minus app fee and paypal fees will be sent to seller App Fee is deposited into the application's paypal account I have implemented it using paypal's express payment api and do the payouts manually. But this has caused double

Paypal express checkout. Is it secure to store data in DB in the onAuthorize function?

﹥>﹥吖頭↗ 提交于 2019-12-12 20:44:07
问题 I have a BIG problem of security in the flow of a payment in a website. I have a nodejs server and a standard html page with a .js which uses Paypal Express checkout. My server has to save the data of the payment due given the nature of my webapp. The point is that even using a Client-Server architecture to pay, the flow of data is going through the client browser. The problem is that Paypal Express checkout uses a new window to execute payment, so the data MUST pass through client! (Or maybe

magento redirect checkout payment to a 3rd party gateway

孤者浪人 提交于 2019-12-12 12:34:58
问题 I would like to be able to allow users to select a certain option on checkout, and then they will be redirected to the bank page where they use their credit info to pay, then redirected back to magento and set order as approved on success or fail if not I have been messing around with magento's code for a couple of days, I was able to 'hack' through the onepage controller to do the redirect and then come back, but I am not able to change the status of the order to 'approved' from that

Getting Problems to integrate payfort api in php

不羁的心 提交于 2019-12-12 11:53:06
问题 I am following (https://docs.start.payfort.com/references/api/) documentation to implement Payfort payment Api but I am facing issues.Can anyone help me to resolve these? I am using below code in Api: <?php require_once('lib/Start.php'); // Enter secret key here Start::setApiKey('test_sec_k_9d19ef5bd543507e333ba7b'); //Create a new token for customer $token = Start_Token::create(array( "number" => "4242424242424242", "exp_month" => 06, "exp_year" => 2018, "cvc" => "123", "name" => "Abdullah

Invoke PSP app with UPI url

纵饮孤独 提交于 2019-12-12 08:08:29
问题 I am trying to create a merchant app which will generate a url based on NPCI's guidelines. This url will be shared as intent and the PSP app (Any registered bank app) should be able to listen to that url and get invoked. I have formed a url like this:- upi://pay?pa=icici/name&pn=USER_NAME&tid=422d97c1-f0fc-4bea-b24a-511ffa85e86f&am=442.87&tn=Test%transaction Now I am sending the intent like this :- Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra

Receiving payments trough PayPal and Credit Card

空扰寡人 提交于 2019-12-12 07:18:39
问题 I am developing a website and I need to receive payments from PayPal and Credit Card, the thing is that I know nothing about this, and my question is where I can find some great resources to help me, or if you have some example codes, everything that can help me. Thank's alot. 回答1: If you're planning on Paypal integration you'll find Paypal's Sandbox a vital tool; https://developer.paypal.com/ As this sort of thing can be a chore and you'll probably end up using Paypal's IPN service (Instant

Payfast payment gateway ITN rersponse in php [closed]

南楼画角 提交于 2019-12-12 04:34:01
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I have integrated payfast payment gateway. I did not get any response from payfast after redirecting success page and notify page. What are the response parameters and how to store transaction details in the database? 回答1: PayFast will return their return variables to your system via the ITN callback after a

QuickPay node.js REST api

我的梦境 提交于 2019-12-12 03:44:40
问题 Has someone worked on worked on QuickPay REST api, I went through internet to find some useful resource but it was not enough. I tested on Postman and it worked well 回答1: var _ = require('underscore'); var quickPay = require('quick-pay'); var version = { "Accept-Version": "v10", "Authorization": "your basic authentication"}; var transaction_id ={}; function processCreatePayment(req, res, next) { var random_order_id = _.random(1000, 99999999999999999999); var parameters = { "currency": "INR",