Reputation: 618
We are going to implement continuous integration for alpha release in play store. I refereed the playstore's documentation and github project for releasing APKs via API. But I didn't find the security mechanism for restricting the Release API to be used by only the permitted IP address. How to restrict the Release API based on ip address?
Referred the Google's best practice documentation for securing the API access. They also suggested to restrict the API acccess based on IP Address.
Thanks in advance :)
Upvotes: 1
Views: 1199
Reputation: 182083
You configure the IP addresses when creating an API key. The list of allowed addresses is tied to the key you use for authenticating.
See also documentation here and here.
Upvotes: 1