Skip to content

Commit

Permalink
feat(integrations): add support for google play (NangoHQ#2636)
Browse files Browse the repository at this point in the history
## Describe your changes

- Add support for Google Play

## Issue ticket number and link

[EXT-126](https://linear.app/nango/issue/EXT-126/add-support-for-google-play)
  • Loading branch information
hassan254-prog authored Aug 27, 2024
1 parent efb8f85 commit 8cf7e9a
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
33 changes: 33 additions & 0 deletions docs-v2/integrations/all/google-play.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: Google Play
sidebarTitle: Google Play
---

API configuration: [`google-play`](https://nango.dev/providers.yaml)

## Features

| Features | Status |
| - | - |
| [Auth (OAuth)](/integrate/guides/authorize-an-api) ||
| [Sync data](/integrate/guides/sync-data-from-an-api) ||
| [Perform workflows](/integrate/guides/perform-workflows-with-an-api) ||
| [Proxy requests](/integrate/guides/proxy-requests-to-an-api) ||
| [Receive webhooks](/integrate/guides/receive-webhooks-from-an-api) | 🚫 (time to contribute: <48h) |

<Tip>We can implement missing features in &lt;48h, just ask for it in the [community](https://nango.dev/slack).</Tip>

## Getting started

- [Creating an API Console Project](https://developers.google.com/android-publisher/authorization#creating_an_apis_console_project)
- [OAuth related docs](https://developers.google.com/android-publisher/authorization)
- [Google Play OAuth scopes](https://developers.google.com/identity/protocols/oauth2/scopes#androidpublisher)
- [API docs](https://developers.google.com/android-publisher)

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

## API gotchas

- Please note that the Google Play APIs have various scopes for different versions, such as viewing and managing your Google Play Developer account or managing corporate Android devices. Refer to the specific API [documentation](https://developers.google.com/identity/protocols/oauth2/scopes#androidpublisher) for the required scopes for each version.

<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/google-play.mdx)</Note>
1 change: 1 addition & 0 deletions docs-v2/integrations/dev-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ sidebarTitle: Developer Tools
<Card title="Digital Ocean" href="/integrations/all/digitalocean" color="#68a063" />
<Card title="Github" href="/integrations/all/github" color="#68a063" />
<Card title="Gitlab" href="/integrations/all/gitlab" color="#68a063" />
<Card title="Google Play" href="/integrations/all/google-play" color="#68a063" />
<Card title="Klipfolio" href="/integrations/all/klipfolio" color="#68a063" />
<Card title="Mailgun" href="/integrations/all/mailgun" color="#68a063" />
<Card title="PagerDuty" href="/integrations/all/pagerduty" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@
"integrations/all/google-drive",
"integrations/all/google-mail",
"integrations/all/google-sheet",
"integrations/all/google-play",
"integrations/all/gorgias",
"integrations/all/greenhouse",
"integrations/all/gumroad",
Expand Down
17 changes: 17 additions & 0 deletions packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,23 @@ google-ads:
cursor_name_in_request: pageToken
response_path: results
docs: https://docs.nango.dev/integrations/all/google-ads
google-play:
categories:
- dev-tools
auth_mode: OAUTH2
authorization_url: https://accounts.google.com/o/oauth2/auth
token_url: https://accounts.google.com/o/oauth2/token
authorization_params:
response_type: code
access_type: offline
prompt: consent
token_params:
grant_type: authorization_code
refresh_params:
grant_type: refresh_token
proxy:
base_url: https://play.googleapis.com
docs: https://docs.nango.dev/integrations/all/google-play
gorgias:
categories:
- e-commerce
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8cf7e9a

Please sign in to comment.