Hello, we are a group of web developers and we need some help.
We are developing a web application that uses Shopify API to get the information about products in the stores, not just for our store, but for every store which gives us Storefront Access Token. We’d like to implement Google Pay to our web application and their documentation says that we need to add gateway and gatewayMerchantId variables. Could you please help us to understand what values should we put in these fields and where we can find them?
We found it at step 2 here: https://developers.google.com/pay/api/web/guides/tutorial
Here is the code which requires these parameters:
const tokenizationSpecification = {
type: 'PAYMENT_GATEWAY',
parameters: {
'gateway': 'example',
'gatewayMerchantId': 'exampleGatewayMerchantId'
}
};