payment-processing

Which API will allow me to save PayPal as a reusable payment type

末鹿安然 提交于 2021-01-27 23:31:40
问题 I am currently working on a project to implement PayPal as a reusable payment option similar to a saved credit card. I have seen this done on websites like http://www.fab.com which allows users to sign into PayPal one time, and then stores their payment information for future purchases. Looking over the different APIs, I am not sure which one fits this description. Just to clarify, I do not wish to use PayPal to capture credit card information, I only want to authorize the "Default Payment

I get the error : - Unhandled Rejection (TypeError): Cannot read property 'id' of undefined in React Application

杀马特。学长 韩版系。学妹 提交于 2021-01-07 06:36:16
问题 My Payment.js :- import React, { useState, useEffect } from 'react' import "./Payment.css" import { useStateValue } from './StateProvider' import CheckoutProduct from './CheckoutProduct'; import { Link, useHistory } from 'react-router-dom'; import { CardElement,useElements, useStripe } from '@stripe/react-stripe-js'; import CurrencyFormat from 'react-currency-format'; import { getBasketTotal } from './reducer'; import axios from "./axios"; import {db} from "./firebase"; function Payment() {

I get the error : - Unhandled Rejection (TypeError): Cannot read property 'id' of undefined in React Application

泪湿孤枕 提交于 2021-01-07 06:35:25
问题 My Payment.js :- import React, { useState, useEffect } from 'react' import "./Payment.css" import { useStateValue } from './StateProvider' import CheckoutProduct from './CheckoutProduct'; import { Link, useHistory } from 'react-router-dom'; import { CardElement,useElements, useStripe } from '@stripe/react-stripe-js'; import CurrencyFormat from 'react-currency-format'; import { getBasketTotal } from './reducer'; import axios from "./axios"; import {db} from "./firebase"; function Payment() {

I get the error : - Unhandled Rejection (TypeError): Cannot read property 'id' of undefined in React Application

谁说胖子不能爱 提交于 2021-01-07 06:34:54
问题 My Payment.js :- import React, { useState, useEffect } from 'react' import "./Payment.css" import { useStateValue } from './StateProvider' import CheckoutProduct from './CheckoutProduct'; import { Link, useHistory } from 'react-router-dom'; import { CardElement,useElements, useStripe } from '@stripe/react-stripe-js'; import CurrencyFormat from 'react-currency-format'; import { getBasketTotal } from './reducer'; import axios from "./axios"; import {db} from "./firebase"; function Payment() {

I get the error : - Unhandled Rejection (TypeError): Cannot read property 'id' of undefined in React Application

喜你入骨 提交于 2021-01-07 06:34:36
问题 My Payment.js :- import React, { useState, useEffect } from 'react' import "./Payment.css" import { useStateValue } from './StateProvider' import CheckoutProduct from './CheckoutProduct'; import { Link, useHistory } from 'react-router-dom'; import { CardElement,useElements, useStripe } from '@stripe/react-stripe-js'; import CurrencyFormat from 'react-currency-format'; import { getBasketTotal } from './reducer'; import axios from "./axios"; import {db} from "./firebase"; function Payment() {

Stripe: card holder name verification

☆樱花仙子☆ 提交于 2020-01-23 08:27:27
问题 How can I implement this scenario: 1) When making payment with credit card user puts in the form his/her first name and last name 2) If first and last name entered to not match first and last name ("printed") on the card - we (myself or stripe) reject transaction. As I see in examples (https://stripe.com/docs/custom-form#step-1-collecting-credit-card-information), to create new token Stripe.js uses only: Card Number, Expiration (MM/YY), CVC. My back-end is on Java. As I see, neither 'Charge'

payment gateway implementation in android

旧时模样 提交于 2020-01-07 04:13:25
问题 Can anyone tell me how to integrate mobile payment in my android app which can deal in INR.? I did search for it but got no results. 回答1: Did you tried of exploring in paypal, Im not sure but i went through the forum of paypal long back and i got this link In app purchase for android work for Indian account. And also take a look at these links provided from paypal for the developers. 1 ) Countries Supported 2 ) Mobile Payments 3 ) Android App. Just have a look at it. I think you wil get some

PayPal Item Name/Description on separate lines using forms

萝らか妹 提交于 2020-01-04 09:08:29
问题 I am processing a simple form to PayPal's Express Checkout using the basic standard free account and the standard form "_xclick" option. When passing through the item name or description, I understand you are limited to 144 characters but I want to have the information inside the title or the description on different lines to separate the information when on PayPals checkout area so the user can clearly see what they are paying for. I have tried to use "\r" and "\n" to seperate the lines, as

pulling shipping information from android PayPal sdk

限于喜欢 提交于 2020-01-03 02:29:09
问题 Does the new native PayPal sdk for android have the ability to pull shipping information to give to the merchant? The sample code provided on the PayPal site will process cards etc, but it appears to me that the api only provides payment confirmation. What good is this api if you don't know where to send your product? Anyone know how to do this? 回答1: Jeff from PayPal at your service. The PayPal Android SDK does not support shipping addresses just yet. Your feedback is heard, and we plan to

Paymill API: How do I update a subscription's credit card?

风格不统一 提交于 2019-12-22 09:44:43
问题 I can create subscriptions, but I can't figure out how to update a subscription so that it uses a new credit card. This is what I've tried: (assuming there is already an existing client, payment and subscription) create token in ui create a payment object in server update client like this: paymill.clients.update(clientId, { payment: payment.id }, callback); I get this error: Error: Identifier,payment Exception: Api_Exception_InvalidParameter Which calls do I need to make to achieve this? 回答1: