Stripe full redirect method Change back button text currently showing site domain - stripe-payments

I am trying to create api where different sites will use our api which will generate a token and they will use that token to redirect the user
I am using this code
$checkout_session = \Stripe\Checkout\Session::create([
'customer_email' => $customer_email,
'payment_method_types' => ['card'],
'line_items' => [[
'price_data' => [
'currency' => 'dkk',
'unit_amount' => $course_price,
'product_data' => [
'name' => $course_title,
'images' => [$course_image],
],
],
'quantity' => 1,
]],
'mode' => 'payment',
'success_url' => $success_url,
'cancel_url' => $cancel_url,
]);
I want to make the back button dynamic is it possible?

Not possible. The Checkout Session is created using your account's public key. So naturally, the "back" button on the Checkout page will show your domain.
What you can change however, is the text of the payment button (although not as flexible as you'd wish): https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-submit_type

Changing the name for a single account is not possible as it was in the old stripe version. But in the Stripe session checkout, if you are having multiple connected accounts, you can change the Public business name (if you have access, otherwise ask account owner) to whatever the business wants from the stripe portal https://dashboard.stripe.com/settings/account.

Related

Stripe Onboarding Flow: Stripe Onboarding Screens not coming up

I'm trying to onboard a customer for a Stripe Express account by using the Stripe API. I create an account requesting the relevant capabilities, providing simple information like first name, last name and email, and the account is created successfully. I expected the Stripe website to come up to request the missing information from the customer (like DOB, bank account info,...), but instead, the account creation just finishes and the account is restricted due to the missing information. Do I have to redirect the user after checking what the status of the account is? What's the flow?
This is the start_onboarding() method of my teacher_us object:
// methods
function start_onboarding() {
// load Stripe library--- moved to the main plugin file
// require_once('..\vendor\autoload.php');
global $stripe_api_key;
$stripe = new \Stripe\StripeClient($stripe_api_key);
$stripe_account = $stripe->accounts->create([
'type' => 'express',
'country' => 'US',
'business_type' => 'individual',
'email' => $this->get_email(),
'individual' => [
'first_name' => $this->get_first_name(),
'last_name' => $this->get_last_name(),
],
'capabilities' => [
'transfers' => ['requested' => true],
'card_payments' => ['requested' => true],
],
]);
It seems that just calling this method doesn't make Stripe to collect the missing info. What am I missing?
This does not happen automatically. After creating the Express account, you must create an Account Link for Connect Onboarding, and redirect your user to the url it includes to go through the onboarding flow to provide the rest of the required information.

How to save card details using stripe?

How to save card details in stripe payment gateway and use card details for next payment for particular user who entered the card details before
thank you
Before saving card you need to create customer first like below
Right now I am giving you an example with PHP language.
Creating customer :
$customer = \Stripe\Customer::create([
'name' => 'Test User',
'email' => 'cardtestuser#gmail.com',
'description' => 'My First Test Customer',
]);
You can refer the link for more detail : https://stripe.com/docs/api/customers/create
It will return the object with customer id e.g : cust_**** that you need to keep with you for later used else you can get it from Stripe dashboard.
Now we need to generate token for the card that we need to add to the customer that recently created in stripe
$token = \Stripe\Token::create([
'card' => [
'number' => '4242424242424242',
'exp_month' => 3,
'exp_year' => 2021,
'cvc' => '314',
],
]);
Above code return the card token e.g tok_*** that you need to use to save card to the customer
Here is the code to create new card to customer
\Stripe\Customer::createSource(
$customer->id,
['source' => $token->id]
);
You can save customeId(cust_###) and cardId(card_###) in database or somewhere else so you can use it later while making payment from card
Hope this will help you

Testing manual confirmation of Stripe's PaymentIntent

I am trying to write tests for the new SCA Stripe integration using Elements & their API. I am stuck testing the manual confirmation of a PaymentIntent.
I am able to create the PaymentIntent. Usually it returns a client_secret that is then used with Stripe.js handleCardAction() which then returns a PaymentIntent id that I can confirm using PaymentIntent::retrieve().
Since my tests are running on the PHP-side I am not able to fire the handleCardAction() and if I skip that step and use the client_secret I get this exception:
Stripe\Exception\InvalidRequestException : No such payment_intent: pi_1FFIp5HU59FHbUqraBNXk9Br_secret_agKRuHJx4y83RFnjpKkGmd29W
How do I get a PaymentIntent ID that is ready for confirmation without using Stripe.js?
Apparently I could just use
$intent = PaymentIntent::create([
'payment_method' => 'pm_card_threeDSecure2Required',
'amount' => 1000,
'currency' => 'USD',
'description' => 'blabla',
'confirmation_method' => 'manual',
'confirm' => true,
]);
// $intent->id can be used with PaymentIntent::retrieve()

Stripe charge existing customer

I'm using embed stripe.js
Upon form completion, the form redirects to: www.mydomain.com/doc-whatever/?action=payment
This url param fires the serverside code. Abbreviated pseudo code:
$token = $_POST['stripeToken'];
//check if customer ID exists in the DB.
//returns the stripe customer id of client attached to the document.
//May or may not be logged in.
$customers_stripe_id = get_customer_stripe_id()
if ( ! $customers_stripe_id ) {
$customer = \Stripe\Customer::create(array(
'email' => 'customer#example.com',
'source' => $token
));
$customers_stripe_id = $customer_id;
}
$charge = \Stripe\Charge::create(array(
'customer' => $customers_stripe_id,
'amount' => 5000,
'currency' => 'usd'
));
This works just fine, however there is an obvious security issue here. One can simply navigate to www.mydomain.com/doc-whatever/?action=payment and if there is stripe customer id stored in the database, the card customer will be charged.
Your server-side code should be authorized then, so that for example only a logged in customer himself or an admin could fire that action.

Application Fee on Stripe Charge

I am trying to implement an Application fee on all transactions sent through a Stripe charge. I have created a stripe platform and connected an account to it however whenever I add the application fee to the charge it doesn't come up in stripe dashboard.
The following code works and makes a charge to the platform.
Stripe::setApiKey("sk_test_#platformcode");
Stripe_Charge::create(
array(
"amount" => 10000,
"currency" => "usd",
"source" => $_POST['stripeToken'],
));
This code also works. It sends the entire charge to the connected account and charges the platform the stripe fees.
Stripe::setApiKey("sk_test_#platformcode");
Stripe_Charge::create(
array(
"amount" => 10000,
"currency" => "usd",
"source" => $_POST['stripeToken'],
"desitnation" => 'acct_#connectedaccountid'
));
But the following doesn't work even though its from the stripe website.
Stripe::setApiKey("sk_test_#platformcode");
Stripe_Charge::create(
array(
"amount" => 10000,
"currency" => "usd",
"source" => $_POST['stripeToken'],
"application_fee" => 1000
),array("stripe_account" => 'acct_#connectedaccountid'));
This code returns and tells the website that the payment was made but when I check stripe its never there in either account and not in collected fees.
Further info: the token uses the platform's pk_test#platformcode.
Using the destination parameter allows you to create a charge through the platform's account. In this case, the platform will pay Stripe's fees and is responsible for refunds and chargebacks.
\Stripe\Stripe::setApiKey({PLATFORM_SECRET_KEY});
\Stripe\Charge::create(array(
'amount' => 10000,
'currency' => 'usd',
'application_fee' => 1000,
'source' => $_POST['stripeToken'],
'destination' => {CONNECTED_STRIPE_ACCOUNT_ID}
));
Authenticating as the connected account, you can create a charge directly on it:
\Stripe\Stripe::setApiKey({PLATFORM_SECRET_KEY});
\Stripe\Charge::create(
array(
'amount' => 10000,
'currency' => 'usd',
'application_fee' => 1000,
'source' => $_POST['stripeToken']
),
array('stripe_account' => {CONNECTED_STRIPE_ACCOUNT_ID})
);
In both these examples, {PLATFORM_SECRET_KEY} is the platform's secret API key (starts with sk_) and {CONNECTED_STRIPE_ACCOUNT_ID} is the ID of the connected account (starts with acct_).
If the second sample doesn't work for you, you might want to make sure you're using the latest version of the Stripe PHP bindings.
You should charge the destination charges similar to this
Stripe.api_key = "sk_test_BQokikJOvBiI2HlWgH4olfQ2"
charge = Stripe::Charge.create({
:amount => 1000,
:currency => "usd",
:source => "tok_visa",
:destination => {
:amount => 877,
:account => "{CONNECTED_STRIPE_ACCOUNT_ID}",
}
})
This is working solution for ruby.
Refer this link to understand more about the flow of funds between connected account and platform account
Generally, stripe support the application fee in this case.
The service doesn't get the fee directly.
When a customer send money to another customer by using a service(or host site) that using stripe for transaction, the there will be 2 kind of fees should be exist.
First kind of fee is produced for the stripe.
Another kind of fee is produced for the service(host site).
So that the service(host site) could get profit from customers.
First I recommend you to check out this url: https://stripe.com/docs/connect/direct-charges
And it says: "Charges created directly on the connected account are only reported on that account; they aren’t shown in your platform’s Dashboard, exports, or other reporting, although you can always retrieve this information via the API."
Fixed: Post the answer here for future people using application fee on Stripe as I couldn't find the answer anywhere.
Code is below. But the main problem is you shouldn't use the connect account ID. You should be using the sk_test_#code# that was generated when connecting the accounts together. It is not the platform or connect users sk_test_#code#. It is the code generated by Oauth when the user connects with stripe platform. There is also a modification to the code.
Stripe::setApiKey("sk_test_#platformcode");
Stripe_Charge::create(
array(
"amount" => 10000,
"currency" => "usd",
"source" => $_POST['stripeToken'],
"application_fee" => 1000
), sk_test_#connectioncode'));

Resources