Skip to content

Releases: GoneToneStudio/node-google-play-api

v1.3.1

01 Jun 06:54
73be53f
Compare
Choose a tag to compare

Fixes

  • Module tslib is missing

Notice

const GooglePlayAPI = require('@gonetone/google-play-api') should be rewritten as const { GooglePlayAPI } = require('@gonetone/google-play-api')

v1.3.0

01 Jun 06:39
475648f
Compare
Choose a tag to compare

Rewrite

  • Rewrite using TypeScript

Notice

const GooglePlayAPI = require('@gonetone/google-play-api') should be rewritten as const { GooglePlayAPI } = require('@gonetone/google-play-api')

v1.2.1

18 Nov 07:04
2d78679
Compare
Choose a tag to compare

Fixes

  • Fix typos

v1.2.0

05 Oct 15:07
9e29ef7
Compare
Choose a tag to compare

New features

  • Can specify the app version code to download (#11) (e0dc8e0)

Example:

gpAPI.getGoogleToken('Your OAuth2 Token', 'save/token.txt').then(async (token) => {
  await gpAPI.googleAuth(token)

  const downloadInfo = await gpAPI.downloadInfo('com.github.android', 613) // Specify Version Code
  console.log(downloadInfo)
})

v1.1.1

24 Sep 09:02
201131a
Compare
Choose a tag to compare

Bug Fixes

  • Fix the error of using toString() when the versionCode is null (#10) (27bc393)

v1.1.0

10 Sep 15:54
64259bf
Compare
Choose a tag to compare

New features

  • Added get split delivery data and downloads split apks.

Get Split Delivery Data Info

gpAPI.getGoogleToken('Your OAuth2 Token', 'save/token.txt').then(async (token) => {
  await gpAPI.googleAuth(token)

  const splitDeliveryDataInfo = await gpAPI.splitDeliveryDataInfo('com.supercell.clashofclans')
  console.log(splitDeliveryDataInfo)
})

Get Download Split Apks Name And Url

gpAPI.getGoogleToken('Your OAuth2 Token', 'save/token.txt').then(async (token) => {
  await gpAPI.googleAuth(token)

  const downloadSplitApksNameAndUrl = await gpAPI.downloadSplitApksNameAndUrl('com.supercell.clashofclans')
  console.log(downloadSplitApksNameAndUrl)
})

Download Split Apks

gpAPI.getGoogleToken('Your OAuth2 Token', 'save/token.txt').then(async (token) => {
  await gpAPI.googleAuth(token)

  await gpAPI.downloadSplitApks('com.supercell.clashofclans', 'save_folder')
})

PS:

  • You can use Split APKs Installer (SAI) this app to install split apks.
  • Don’t forget to use gpAPI.downloadApk() to download the main apk, then install together.

v1.0.3

30 Aug 02:59
9d49c86
Compare
Choose a tag to compare
  • Update README

v1.0.2

12 Aug 02:50
33653e8
Compare
Choose a tag to compare
  • Check the beginning of the Token string.

v1.0.1

01 Jul 08:27
46732f9
Compare
Choose a tag to compare
  • Fixed some problems

v1.0.0

01 Jul 07:55
c691069
Compare
Choose a tag to compare
  • First version