A Ruby interface to the Google Pay API. Currently focused on the Google Pay for Passes part of the API, with the intention of integrating with Google Pay for Payments in the future.
gem 'googlepay'
And then execute:
$ bundle
Or install it yourself as:
$ gem install googlepay
To try an implementation of the gem, try it here or view the demo code here.
In order to use the googlepay gem, you will need to have a Google Service account setup.
- Sign up for a Google Cloud Platform account.
- Create a new project.
- Within the new project, set up a Service Account.
- Click on Actions on your new Service Account, Create Key, generate a JSON key and download.
- Add the file into an initializer in your project.
Example: initializers/googlepay.rb
require 'googlepay'
Googlepay.configure do |config|
config.service_account = {
"type": "service_account",
"project_id": "",
"private_key_id": "",
"private_key": "",
"client_email": "",
"client_id": "",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": ""
}
end
preferably by storing them as an ENV VAR in YAML format.
require 'googlepay'
Googlepay.configure do |config|
config.service_account = Rails.application.credentials.service_account
#config.service_account = ENV['SERVICE_ACCOUNT']
end
Visit here to learn how to work with Google on getting registered for a Google Pay API for Passes account and to access the Google Pay API for Passes Merchant Center. Once registered in the Merchant Center, save your Issuer ID.
Visit https://console.developers.google.com/apis/api/walletobjects.googleapis.com/overview?project={YOUR PROJECT} to enable the API for your project. Without doing so will cause this error:
Google Pay Passes API has not been used in project 615220349094 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/walletobjects.googleapis.com/overview?project={ID} then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
This gem takes care of this for you, thanks to googleauth.
JSON EventTicketClass must be created before EventTicketObjects can be created.
Refer to the Google Pay for Passes Code Snippets to build a JSON Object. I have also included simplified examples in EXAMPLE.md and you can review the specs for uses.
parameters = JSON Object
id = Googlepay::EventTicketClass.new(parameters)[:id]
Use the Issuer ID and a Unique ID formatted {Issuer ID.Unique ID} for the ID of the JSON object. If the ID exists already, the gem will update the EventTicketClass automatically.
More documentation here.
Googlepay::EventTicketObject.new(parameters)
Use the Class ID and a Unique ID formatted {Issuer ID.Unique ID} for the ID of the JSON object. Include the array of domains to whitelist JWT saving functionality in the origin parameter. The Google Pay API for Passes button will not render when the origins field is not defined. You could potentially get an "Load denied by X-Frame-Options" or "Refused to display" messages in the browser console when the origins field is not defined.
More documentation here.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/regularlady/googlepay. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
The googlepay gem is not affiliated with or endorsed by Google.
Everyone interacting in the Googlepay project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.