Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tut] Stripe Apple Pay Web Integration with Example

#1
Stripe Apple Pay Web Integration with Example

<div style="margin: 5px 5% 10px 5%;"><img src="https://www.sickgaming.net/blog/wp-content/uploads/2022/03/stripe-apple-pay-web-integration-with-example.jpg" width="550" height="344" title="" alt="" /></div><div><div class="modified-on" readability="7.1304347826087"> by <a href="https://phppot.com/about/">Vincy</a>. Last modified on December 7th, 2021.</div>
<p>Integrating Stripe Apple pay into a web application is easy. It requires a few steps to achieve this integration. This article shows how to enable Apple or Google pay option using Stripe.</p>
<p>We can divide this article into 2 sections. It narrates the action items, prerequisites, and codes for the payment integration.</p>
<ol>
<li>Preparing your web environment to display the payment request option.</li>
<li>Building PHP example for&nbsp; Stripe Apple Pay integration.</li>
</ol>
<p>If you are new to the <a href="https://phppot.com/php/stripe-one-time-payment-with-prebuilt-hosted-checkout-in-php/#generate-and-configure-stripe-api-keys">Stripe payment integration</a>, check with the linked article. It explains how to get the Stripe API app credentials and other basic knowledge.</p>
<h2>About Stripe Payment Request Button Element</h2>
<p>This payment method collects details from customers using <strong>Stripe Apple Pay</strong> dialog. We have already seen how to collect <a href="https://phppot.com/php/manage-recurring-payments-using-stripe-billing-in-php/">recurring payments using Stripe subscriptions</a>.</p>
<p>Stripe’s Payment Request Button method mounts a UI control to allow payment. This is a single point of integration for Apple Pay, Google Pay, and Microsoft Pay.</p>
<p>By ticking up the list of prerequisites in the documentation, we can see any one of the below buttons in the UI.</p>
<p><img loading="lazy" class="alignnone size-large wp-image-15813" src="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-550x344.jpg" alt="stripe apple pay" width="550" height="344" srcset="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-550x344.jpg 550w, https://phppot.com/wp-content/uploads/20...00x188.jpg 300w, https://phppot.com/wp-content/uploads/20...68x480.jpg 768w, https://phppot.com/wp-content/uploads/20...le-pay.jpg 800w" sizes="(max-width: 550px) 100vw, 550px"></p>
<h2>1. Preparing your web environment to display the payment request option</h2>
<p>This section will tell the steps to display the Stripe apple pay. In Chrome or Microsoft edge, this will show other <a href="https://phppot.com/shop/paypal-checkout-payment-gateway-integration-with-smart-payment-buttons-maia/">payment request buttons in a web interface</a>.</p>
<ol>
<li>Ensure that the domain is HTTPS enabled.</li>
<li>Let the domain pass through the Apple pay’s verification process.</li>
<li>Save cards or other payment methods to the browser. The specifications vary based on the payment methods and browsers.</li>
</ol>
<h3>How to verify a domain with Apple Pay?</h3>
<p>Follow the below steps to display the Stripe Apple pay button in your interface.</p>
<ol>
<li>Download and put the domain association file in the following path of your web root. <code>/.well-known/apple-developer-merchantid-domain-association</code>.</li>
<li>Request to create a Stripe Apple Pay domain. This can be done in any one of the below methods.
<ul>
<li>By navigating to the Stripe Apple Pay tab in the Account Settings of your Dashboard.</li>
<li>By using the API with your live secret key.</li>
</ul>
</li>
<li>Use API keys to make payments via the website registered with Apple Pay Stripe.</li>
</ol>
<p>Note: Need not create Apple merchant id or generate certificate signing request (CSR). Stripe will take care of these in the back end.</p>
<h3>API request to create Stripe Apple Pay domain</h3>
<p>The following PHP script shows how to create a Stripe API.</p>
<pre class="prettyprint"><code class="language-php">
\Stripe\Stripe:ConfusedetApiKey("STRIPE SECRET KEY HERE"); \Stripe\ApplePayDomain::create([ 'domain_name' =&gt; 'example.com',
]);
</code></pre>
<h2>2. Building PHP example for&nbsp; Stripe Apple pay integration</h2>
<p>These are the steps to integrate Stripe Apple pay in a PHP web application. Some of the below are similar as we have seen in the <a href="https://phppot.com/php/stripe-payment-gateway-integration-using-php/">Stripe payment gateway integration example</a>.</p>
<ol>
<li>Download the Stripe API client.</li>
<li>Configure Stripe API keys and tokens.</li>
<li>Verify the payment request and mount the Stripe Apple pay button.</li>
<li>Request and Confirm payment.</li>
<li>Handle shipping/delivery address change events.</li>
<li>Creating PHP endpoints to prepare and initiate Stripe API requests.</li>
</ol>
<h3>Download the Stripe client</h3>
<p>Download PHP stripe API client and add up in the application dependency. This will be helpful to create AppleDomain and PaymentIntent objects via API.</p>
<p>It is available on <a href="https://github.com/stripe/stripe-php" target="_blank" rel="noopener">Github</a>. You can install this via composer also. The command to install the Stripe-PHP library is,</p>
<pre class="prettyprint"><code class="language-php">
composer require stripe/stripe-php
</code></pre>
<h3>Configure Stripe API keys and tokens</h3>
<p>This is the web application config file. It includes the keys used to access the payment request API for Stripe Apple pay integration.</p>
<p>It also contains the web application root and the payment or order endpoint URLs. It defines Product details and shipping amount to build the payment request.</p>
<p class="code-heading">Common/config.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; class Config
{ const ROOT_PATH = "http://localhost/stripe-apple-pay"; /* Stripe API test keys */ const STRIPE_PUBLISHIABLE_KEY = ""; const STRIPE_SECRET_KEY = ""; const STRIPE_WEBHOOK_SECRET = ""; const RETURN_URL = Config::ROOT_PATH . "/success.php"; /* PRODUCT CONFIGURATIONS BEGINS */ const PRODUCT_NAME = 'A6900 MirrorLess Camera'; const PRODUCT_IMAGE = Config::ROOT_PATH . '/images/camera.jpg'; const PRODUCT_PRICE = '289.61'; const CURRENCY = 'usd'; const US_SHIPPING = 7; const UK_SHIPPING = 12;
} </code></pre>
<h3>Verify the payment request and mount Stripe Apple pay button</h3>
<p>The index.php is a landing page that contains the <a href="https://phppot.com/php/responsive-product-gallery-for-shopping-cart/">product tile</a>. It has the container to mount the Stripe Apple pay button.</p>
<p>The HTML elements have the data attributes to have the payment configurations.</p>
<p>In imports the Stripe.js library and the payment.js file created for this example.</p>
<p class="code-heading">index.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; require_once __DIR__ . '/Common/Config.php';
?&gt;
&lt;html&gt;
&lt;title&gt;Stripe Apple Pay integration&lt;/title&gt;
&lt;head&gt;
&lt;link href="assets/css/style.css" type="text/css" rel="stylesheet" /&gt;
&lt;/head&gt;
&lt;body&gt; &lt;div class="phppot-container"&gt; &lt;h1&gt;Stripe Apple Pay integration&lt;/h1&gt; &lt;div id="payment-box" data-pk="&lt;?php echo Config::STRIPE_PUBLISHIABLE_KEY; ?&gt;" data-return-url="&lt;?php echo Config::RETURN_URL; ?&gt;"&gt; &lt;input type="hidden" id="unit-price" value="&lt;?php echo Config:TongueRODUCT_PRICE; ?&gt;" /&gt; &lt;input type="hidden" id="product-label" value="&lt;?php echo Config:TongueRODUCT_NAME; ?&gt;" /&gt; &lt;input type="hidden" id="currency" value="&lt;?php echo Config::CURRENCY; ?&gt;" /&gt; &lt;input type="hidden" id="shipping-amount" value="&lt;?php echo Config::US_SHIPPING; ?&gt;" /&gt; &lt;img src="&lt;?php echo Config:TongueRODUCT_IMAGE; ?&gt;" /&gt; &lt;h4 class="txt-title"&gt;&lt;?php echo Config:TongueRODUCT_NAME; ?&gt;&lt;/h4&gt; &lt;div class="txt-price"&gt;$&lt;?php echo Config:TongueRODUCT_PRICE; ?&gt;&lt;/div&gt; &lt;/div&gt; &lt;!-- Element target to render Stripe apple pay button --&gt; &lt;div id="payment-request-button"&gt; &lt;!-- A Stripe Element will be inserted here. --&gt; &lt;/div&gt; &lt;/div&gt; &lt;script src="https://js.stripe.com/v3/"&gt;&lt;/script&gt; &lt;script src="assets/js/payment.js"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<p>This is a partial code of the payment.js file. It shows the script required for rendering the Stripe Apple pay button into the UI. It builds the Stripe payment request object by using the following details.</p>
<ul>
<li>Customer details: name, email, address.</li>
<li>Amount</li>
<li>Currency</li>
<li>Shipping details: amount, description.</li>
</ul>
<p>The data for these details are from the config file. The payment form HTML contains hidden fields and data attributes to hold the config. This <a href="https://phppot.com/jquery/read-html5-data-attribute-via-jquery/">script uses the data attributes</a> and hidden data to prepare the request.</p>
<p>After preparing the request body, it calls <code>canMakePayment()</code> to verify the <code>paymentRequest</code> object. Once verified, then it will render the Apple pay button in the UI.</p>
<p class="code-heading">assets/js/payment.js</p>
<pre class="prettyprint"><code class="language-javascript">
var publishableKey = document.querySelector('#payment-box').dataset.pk;
var returnURL = document.querySelector('#payment-box').dataset.returnUrl;
var unitPrice = document.querySelector('#unit-price').value;
unitPrice = Math.round((unitPrice * 100));
var productLabel = document.querySelector('#product-label').value;
var currency = document.querySelector('#currency').value;
var shippingAmount = document.querySelector('#shipping-amount').value;
shippingAmount = Math.round((shippingAmount * 100)); var stripe = Stripe(publishableKey, { apiVersion: "2020-08-27",
});
var paymentRequest = stripe.paymentRequest({ country: 'US', currency: currency, total: { label: productLabel, amount: unitPrice, }, requestPayerName: true, requestPayerEmail: true, requestShipping: true, shippingOptions: [ { id: 'Default Shipping', label: 'Default Shipping', detail: '', amount: shippingAmount, }, ],
}); var elements = stripe.elements();
var prButton = elements.create('paymentRequestButton', { paymentRequest: paymentRequest,
}); // Verify payment parameters with the the Payment Request API.
paymentRequest.canMakePayment().then(function(result) { if (result) { prButton.mount('#payment-request-button'); } else { document.getElementById('payment-request-button').style.display = 'none'; }
});
</code></pre>
<h3>Request and Confirm payment</h3>
<p>This section contains the rest of the payment.js code. It creates paymentIntent object by clicking the ‘pay’ button on the payment overlay.</p>
<p>Once paymentIntent is created, the endpoint returns the client-secret-key. Then, the script calls stripe.confirmCardPayment with the reference of the client-secret-key.</p>
<p class="code-heading">assets/js/payment.js</p>
<pre class="prettyprint"><code class="language-javascript">
paymentRequest.on('paymentmethod', function(ev) { //Create Stripe payment intent var requestParam = { email: ev.payerEmail, unitPrice: unitPrice, currency: currency, name: ev.payerName, address: ev.shippingAddress.addressLine[0], country: ev.shippingAddress.country, postalCode: ev.shippingAddress.postalCode, shippingPrice: ev.shippingOption.amount, }; var createOrderUrl = "ajax-endpoint/create-stripe-order.php"; fetch(createOrderUrl, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(requestParam) }).then(function(result) { return result.json(); }).then(function(data) { // Script to confirm payment stripe.confirmCardPayment( data.clientSecret, { payment_method: ev.paymentMethod.id }, { handleActions: false } ).then(function(confirmResult) { if (confirmResult.error) { // Report to the browser that the payment failed, prompting it to // re-show the payment interface, or show an error message and close // the payment interface. ev.complete('fail'); } else { // Report to the browser that the confirmation was successful, prompting // it to close the browser payment method collection interface. ev.complete('success'); // Check if the PaymentIntent requires any actions and if so let Stripe.js // handle the flow. If using an API version older than "2019-02-11" instead // instead check for: `paymentIntent.status === "requires_source_action"`. if (confirmResult.paymentIntent.status === "requires_action") { // Let Stripe.js handle the rest of the payment flow. stripe.confirmCardPayment(clientSecret).then(function(result) { if (result.error) { // The payment failed -- ask your customer for a new payment method. } else { // The payment has succeeded. window.location.replace(returnURL + "?orderno=" + data.orderHash); } }); } else { // The payment has succeeded. window.location.replace(returnURL + "?orderno=" + data.orderHash); } } }); });
});
</code></pre>
<h3>Handle shipping/delivery address change events</h3>
<p>This section deals with the shipping options on-change events. This code is applicable only if the payment object is enabled with shipping options.</p>
<p>It hits the PHP endpoint via <a href="https://phppot.com/jquery/read-display-json-data-using-jquery-ajax/">AJAX and gets the JSON</a> to change the shipping options. It passes the selected shipping address to the PHP.</p>
<p class="code-heading">assets/js/payment.js</p>
<pre class="prettyprint"><code class="language-javascript">
paymentRequest.on('shippingaddresschange', function(ev) { // Perform server-side request to fetch shipping options fetch('ajax-endpoint/calculate-product-shipping.php', { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ adress: ev.shippingAddress }) }).then(function(response) { return response.json(); }).then(function(result) { ev.updateWith({ status: 'success', shippingOptions: result.shippingOptions, }); });
});
</code></pre>
<p>This is the PHP endpoint file that reads the shipping data sent via AJAX. It parses the shipping data and gets the country from it.</p>
<p>It uses an appropriate shipping amount from the config based on the country. You can include your <a href="https://phppot.com/php/shipping-api-integration-in-php-with-australia-post-example/">additional shipping calculation</a> here if needed.</p>
<p>It returns a JSON response with the shipping address and corresponding amount.</p>
<p class="code-heading">ajax-endpoint/calculate-product-shipping.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
require_once __DIR__ . '/../Common/Config.php'; $content = trim(file_get_contents("php://input")); $jsondecoded = json_decode($content, true);
$country = filter_var($jsondecoded["adress"]["country"], FILTER_SANITIZE_STRING);
if ($country == 'UK') { $shippingAmount = Config::UK_SHIPPING;
} else { $shippingAmount = Config::US_SHIPPING;
} $shippingOptions = array( "shippingOptions" =&gt; array( array( "id" =&gt; 'Edited shipping', 'label' =&gt; "Shipping Costs based on Country", 'detail' =&gt; $detail, 'amount' =&gt; $shippingAmount ) )
); echo json_encode($shippingOptions);
exit(); ?&gt;
</code></pre>
<h3>Creating PHP endpoints to prepare and initiate Stripe API requests</h3>
<p>The below PHP files contains the server-side code that hits API. It <a href="https://phppot.com/php/php-request-methods/">reads the request</a> body and creates a payment object on sending the <a href="https://stripe.com/docs/apple-pay" target="_blank" rel="noopener">Stripe apple pay</a> request.</p>
<p>The StripeService.php file sets the API secret key to the Stripe object. It contains a function captureResponse() function that updates orders and payment entity.</p>
<p>Stripe calls the webhook endpoint as configured in the config.php. This endpoint reads Stripe response. Then, it invokes the captureResponse() function to update the database.</p>
<h4>PHP AJAX endpoint to create order</h4>
<p class="code-heading">ajax-endpoint/create-stripe-order.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; use Phppot\StripeService;
use Phppot\StripePayment;
require_once __DIR__ . '/../Common/Config.php'; $content = trim(file_get_contents("php://input")); $jsondecoded = json_decode($content, true); if (! empty($jsondecoded)) { require_once __DIR__ . "/../lib/StripeService.php"; $stripeService = new StripeService(); $email = filter_var($jsondecoded["email"], FILTER_SANITIZE_EMAIL); $name = filter_var($jsondecoded["name"], FILTER_SANITIZE_STRING); $address = filter_var($jsondecoded["address"], FILTER_SANITIZE_STRING); $country = filter_var($jsondecoded["country"], FILTER_SANITIZE_STRING); $postalCode = filter_var($jsondecoded["postalCode"], FILTER_SANITIZE_STRING); $notes = 'Stripe Apple Pay Payment'; $currency = filter_var($jsondecoded["currency"], FILTER_SANITIZE_STRING); $orderReferenceId = $stripeService-&gt;getToken(); $unitPrice = ($jsondecoded["unitPrice"] + $jsondecoded["shippingPrice"]); $orderStatus = "Pending"; $paymentType = "stripe"; $customerDetailsArray = array( "email" =&gt; $email, "name" =&gt; $name, "address" =&gt; $address, "country" =&gt; $country, "postalCode" =&gt; $postalCode ); $metaData = array( "email" =&gt; $email, "order_id" =&gt; $orderReferenceId ); require_once __DIR__ . '/../lib/StripePayment.php'; $stripePayment = new StripePayment(); $orderId = $stripePayment-&gt;insertOrder($orderReferenceId, $unitPrice, $currency, $orderStatus, $name, $email); $result = $stripeService-&gt;createPaymentIntent($orderReferenceId, $unitPrice, $currency, $email, $customerDetailsArray, $notes, $metaData); if (! empty($result) &amp;&amp; $result["status"] == "error") { http_response_code(500); } $response = json_encode($result["response"]); echo $response; exit();
}
</code></pre>
<h4>Stripe apple pay webhook endpoint</h4>
<p class="code-heading">webhook-ep/capture-response.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; use Phppot\StriService; require_once __DIR__ . "/../lib/StripeService.php"; $stripeService = new StripeService(); $stripeService-&gt;captureResponse(); ?&gt;
</code></pre>
<h4>Stripe Service with request-response handlers</h4>
<p class="code-heading">lib/StripeService.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; use Phppot\StripePayment;
use Stripe\Stripe;
use Stripe\WebhookEndpoint;
require_once __DIR__ . '/../vendor/autoload.php'; class StripeService
{ private $apiKey; private $webhookSecret; private $stripeService; function __construct() { require_once __DIR__ . '/../Common/Config.php'; $this-&gt;apiKey = Config::STRIPE_SECRET_KEY; $this-&gt;webhookSecret = Config::STRIPE_WEBHOOK_SECRET; $this-&gt;stripeService = new Stripe(); $this-&gt;stripeService-&gt;setVerifySslCerts(false); } public function createPaymentIntent($orderReferenceId, $amount, $currency, $email, $customerDetailsArray, $notes, $metaData) { try { $this-&gt;stripeService-&gt;setApiKey($this-&gt;apiKey); $paymentIntent = \Stripe\PaymentIntent::create([ 'description' =&gt; $notes, 'shipping' =&gt; [ 'name' =&gt; $customerDetailsArray["name"], 'address' =&gt; [ 'line1' =&gt; $customerDetailsArray["address"], 'postal_code' =&gt; $customerDetailsArray["postalCode"], 'country' =&gt; $customerDetailsArray["country"] ] ], 'amount' =&gt; $amount, 'currency' =&gt; $currency, 'payment_method_types' =&gt; [ 'card' ], 'metadata' =&gt; $metaData ]); $output = array( "status" =&gt; "success", "response" =&gt; array( 'orderHash' =&gt; $orderReferenceId, 'clientSecret' =&gt; $paymentIntent-&gt;client_secret ) ); } catch (\Error $e) { $output = array( "status" =&gt; "error", "response" =&gt; $e-&gt;getMessage() ); } return $output; } public function captureResponse() { $payload = @file_get_contents('php://input'); $sig_header = $_SERVER['HTTP_STRIPE_SIGNATURE']; $event = null; try { $event = \Stripe\Webhook::constructEvent($payload, $sig_header, $this-&gt;webhookSecret); } catch (\UnexpectedValueException $e) { // Invalid payload http_response_code(400); exit(); } catch (\Stripe\Exception\SignatureVerificationException $e) { // Invalid signature http_response_code(400); exit(); } if (! empty($event)) { $eventType = $event-&gt;type; $orderReferenceId = $event-&gt;data-&gt;object-&gt;metadata-&gt;order_id; $paymentIntentId = $event-&gt;data-&gt;object-&gt;id; $amount = $event-&gt;data-&gt;object-&gt;amount; require_once __DIR__ . '/../lib/StripePayment.php'; $stripePayment = new StripePayment(); if ($eventType == "payment_intent.payment_failed") { $orderStatus = 'Payement Failure'; $paymentStatus = 'Unpaid'; $amount = $amount / 100; $stripePayment-&gt;updateOrder($paymentIntentId, $orderReferenceId, $orderStatus, $paymentStatus); $stripePayment-&gt;insertPaymentLog($orderReferenceId, $payload); } if ($eventType == "payment_intent.succeeded") { /* * Json values assign to php variables * */ $orderStatus = 'Completed'; $paymentStatus = 'Paid'; $amount = $amount / 100; $stripePayment-&gt;updateOrder($paymentIntentId, $orderReferenceId, $orderStatus, $paymentStatus); $stripePayment-&gt;insertPaymentLog($orderReferenceId, $payload); http_response_code(200); } } }
}
</code></pre>
<h4>Updating orders and payments in database</h4>
<p class="code-heading">lib/StripePayment.php</p>
<pre class="prettyprint"><code class="language-php">
&lt;?php
namespace Phppot; use Phppot\DataSource; class StripePayment
{ private $ds; function __construct() { require_once __DIR__ . "/../lib/DataSource.php"; $this-&gt;ds = new DataSource(); } public function insertOrder($orderReferenceId, $unitAmount, $currency, $orderStatus, $name, $email) { $orderAt = date("Y-m-d H:iConfused"); $insertQuery = "INSERT INTO tbl_order(order_reference_id, amount, currency, order_at, order_status, billing_name, billing_email) VALUES (?, ?, ?, ?, ?, ?, ?, ?) "; $paramValue = array( $orderReferenceId, $unitAmount, $currency, $orderAt, $orderStatus, $name, $email ); $paramType = "sdssssss"; $insertId = $this-&gt;ds-&gt;insert($insertQuery, $paramType, $paramValue); return $insertId; } public function updateOrder($paymentIntentId, $orderReferenceId, $orderStatus, $paymentStatus) { $query = "UPDATE tbl_order SET stripe_payment_intent_id = ?, order_status = ?, payment_status = ? WHERE order_reference_id = ?"; $paramValue = array( $paymentIntentId, $orderStatus, $paymentStatus, $orderReferenceId ); $paramType = "ssss"; $this-&gt;ds-&gt;execute($query, $paramType, $paramValue); } public function insertPaymentLog($orderReferenceId, $response) { $insertQuery = "INSERT INTO tbl_stripe_payment_log(order_id, stripe_payment_response) VALUES (?, ?) "; $paramValue = array( $orderReferenceId, $response ); $paramType = "ss"; $this-&gt;ds-&gt;insert($insertQuery, $paramType, $paramValue); }
}
?&gt;
</code></pre>
<h2>Stripe Apple Pay Output</h2>
<p>The below screenshot shows the product tile with the Stripe Apple pay button. The details are dynamic from the web application config.</p>
<p><img loading="lazy" class="alignnone size-full wp-image-15824" src="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-integration.jpg" alt="stripe apple pay integration" width="350" height="457" srcset="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-integration.jpg 350w, https://phppot.com/wp-content/uploads/20...30x300.jpg 230w" sizes="(max-width: 350px) 100vw, 350px"></p>
<p>By clicking the Stripe Apple pay button in the above tile, the following payment dialog will pop up. It will have the option to proceed with payment by using the Apple touch id.</p>
<p><img loading="lazy" class="alignnone size-large wp-image-15828" src="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-form-550x638.jpg" alt="stripe apple pay form" width="550" height="638" srcset="https://phppot.com/wp-content/uploads/2021/11/stripe-apple-pay-form-550x638.jpg 550w, https://phppot.com/wp-content/uploads/20...59x300.jpg 259w, https://phppot.com/wp-content/uploads/20...y-form.jpg 600w" sizes="(max-width: 550px) 100vw, 550px"></p>
<h2>Conclusion</h2>
<p>Thus, we have integrated Stripe Apple pay in a web application using PHP. We used the Stripe Payment Request Button to display the Apple pay option in the UI.</p>
<p>We have seen the pre-requisites and configuration steps needed for this integration. I hope, the example code helps to understand the steps easily.<br /><a class="download" href="https://phppot.com/downloads/stripe-apple-pay.zip">Download</a></p>
<p> <!-- #comments --> </p>
<div class="related-articles">
<h2>Popular Articles</h2>
</p></div>
<p> <a href="https://phppot.com/php/stripe-apple-pay/#top" class="top">↑ Back to Top</a> </p>
</div>


https://www.sickgaming.net/blog/2021/12/...h-example/
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB Theme © iAndrew 2016