Introduction
What is Google Pay?
Google Pay is a digital payment platform developed by Google, allowing users to make payments, send and receive money, and manage financial transactions using their mobile devices and computers. It offers features such as contactless payments, peer-to-peer payments, online and in-app payments, and the ability to pay for public transportation and purchase event tickets. Users can also use Google Pay to pay bills, manage loyalty cards, and access rewards from participating merchants. Google Pay has evolved and expanded since my last update in January 2022, so users can download the app from their app stores to explore its current features and capabilities.
Supported PSPs:
- Checkout.Com
- WorldPay
- Nuvei
Please reach out to your service payment provider's support team to request the activation of Google Pay 3D processing for your merchant account.
How to integrate Google Pay through BridgerPay?
To achieve Apple Pay integration, please follow the requirements below:
- Get authorized as a merchant.
- Create a server session to generate a cashier token.
POST https://api.bridgerpay.com/v2/cashier/session/create/{api_key}
Content-Type: application/json
Authorization: Bearer {{ACCESS_TOKEN}}
{
"cashier_key": "{cashier_key}",
"order_id": "g173aa02",
"currency": "EUR",
"country": "NL",
"first_name": "Juan",
"last_name": "Lopez",
"email": "[email protected]",
"language": "en",
"state": null,
"address": "Boenluif 30",
"city": "Hoogwoud",
"zip_code": "1718 AZ",
"amount": 10,
"phone": "+328141112233"
}
- Integrate an Google Pay button into your website by utilizing the cashier_key and cashier_token obtained in the preceding steps, allowing for its seamless inclusion and display.
<!DOCTYPE html>
<html>
<body>
<script src="https://checkout.bridgerpay.com/v2/loader"
data-cashier-key="{cashier_key}"
data-cashier-token="{cashier_token}"
data-button-mode="wallet">
>
</script>
</body>
</html>
Updated 22 days ago