payment-gateway

How to Integrate Paypal for month charges that varies?

南笙酒味 提交于 2019-12-12 03:56:16
问题 I would like to integrate paypal into my current servicing site. I am able to generate the details from database, and retrieve the users' charges, such that a user charges would be using this forumla: Amount payable = no. of hrs service used within the month x $5 per hr I would like to charge users based on their usage on per month basis, and automatic billing/deduction from their credit cards. Should I be using a subscribe or buy now settings for my situation? As different users will have

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",

how to check email id entered is registered with Paypal?

左心房为你撑大大i 提交于 2019-12-12 03:24:01
问题 m using adaptive payment method i want to trace out weather email id entered is registered with Paypal or not is there any way to trace it??? check email id entered is weather registered with Paypal is there any API or example?? 回答1: You can use GetVerifiedStatus API.To use this API, you will need to create an adaptive application here 来源: https://stackoverflow.com/questions/28470517/how-to-check-email-id-entered-is-registered-with-paypal

sending data to payment gateway and back - possible problems

本秂侑毒 提交于 2019-12-12 02:21:33
问题 I'm going to use one of the payment gateways and so users from my site will be redirected to gateway hosted page to provide all the CC details. Gateway will return results to the page which I specify (lets call it paymentProcessed.php). But now my worry is that: someone might fake it. What I mean is that someone might be redirected to payment gateway, then instead of paying, will return results to my site paymentProcessed.php page with confirmation that all has been payed. This confirmation

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.

Skrill Payment Gateway Integration in Asp.Net

梦想与她 提交于 2019-12-12 01:24:38
问题 I am looking for sample code to integrate skrill payment gateway into my application. I tried with skrill sandbox account and json rpc web method calling, but everytime I got the parse error or cross domain exception. Please help me out. I want to register a credit card and later want to make automated payment. If you have sample code with other language platform than also please share some sample here. Thanks Richa Shah First Tried with below code: public static string RegCard() { var

Transaction error pay u money

こ雲淡風輕ζ 提交于 2019-12-12 01:23:32
问题 SORRY! We were unable to process your payment Checksum Failed test payment script provided by payumoney web integration not working json product info passed still says transaction error <?php // Merchant key here as provided by Payu $MERCHANT_KEY = "JBZaLc"; // Merchant Salt as provided by Payu $SALT = "GQs7yium"; // End point - change to https://secure.payu.in for LIVE mode $PAYU_BASE_URL = "https://test.payu.in"; $action = ''; $posted = array(); if(!empty($_POST)) { //print_r($_POST);

How to send emails in eWay recurring payment?

社会主义新天地 提交于 2019-12-11 18:44:56
问题 I am using eWay payment gateway. I have done recurring payment using eway php rebill source from their site & is working fine. But how would i send emails(custom) to the user? Also i would want to maintain these transactions in database. Is there something like Paypal's IPN in eWay? 回答1: If you'd like to send a custom email to the user you'll need to do that separate from the recurring billing process. Unfortunately there isn't a notification of payment events, the closest you could get would

search for active subscription for a customer in Braintree payments

懵懂的女人 提交于 2019-12-11 16:14:03
问题 In my website, I am using Braintree payment gateway for both card payments and PayPal transactions with auto renewal subscriptions. i am creating the customer and storing the card in Braintree vault for auto renewal.. also using the same customer id for that customer PayPal transactions (if happened) before proceeding the payment, just need to check for active subscription, for both auto renewable and auto renewal cancelled and still expiration date is due subscription existence. is there any