it seems starting with Google Play Store version 11 (2018), that /fdfe/acquire is now being used instead of /fdfe/purchase. does this project have any plans to update to the new request?
|
const axiosData = await axios.post(`${this._apiEndpointStore}${this._playApiPath}/purchase`, qs.stringify({ |
|
doc: packageName.toString(), |
|
ot: offerType.toString(), |
|
vc: versionCode.toString() |
|
}), this._axiosConfigForGooglePlay) |
it seems starting with Google Play Store version 11 (2018), that
/fdfe/acquireis now being used instead of/fdfe/purchase. does this project have any plans to update to the new request?node-google-play-api/src/GooglePlayAPI.ts
Lines 377 to 381 in f476601