I'm just getting started with Google Pay API and I planned to use Braintree as the gateway. According to the Google Pay API Doc here, we have to specify the sdkversion
number of braintree.client.VERSION
:
"gateway": "braintree"
"braintree:apiVersion": "v1"
"braintree:sdkVersion": "braintree.client.VERSION"
"braintree:merchantId": "YOUR_BRAINTREE_MERCHANT_ID"
"braintree:clientKey": "YOUR_BRAINTREE_TOKENIZATION_KEY"
My questions:
- Where can we find the version number of
braintree.client
and what would be the syntax to specify the version number? According to the Braintree's doc here, there are so many version numbers and seems like3.40.0
is the latest. Shall we putbraintree.client.3.40.0
? - What is
braintree:apiVersion
on the other hand? - Is it possible to use my PayPal merchant ID since I've generated my Braintree SDK Credential from within my PayPal's API Access setting?
- For
braintree.clientKey
, it should be the Braintree SDK Credential that I've generated with PayPal, am I right?
It's kind of confusing, hope someone can shed me some light, thanks!