dweinstein/node-google-play

download apk error due to wrong user_agent set

donmezburak opened this issue · 5 comments

I realized that when i try to download apk using completeDownloadInfo method, it sets user_agent to apiUserAgent. it must be downloadUserAgent to request properly. Am i wrong?

by default completeDownloadInfo uses the downloadUserAgent as can be seen

'User-Agent': _opts.downloadUserAgent,

Are you perhaps passing the wrong agent to the constructor?

Yes you are right. However, at the end, it goes to post request and that method reset all headers as i see

getCompleteDownloadInfo does not make the request for you, it simply returns an object suitable for being passed to e.g., request lib and it does AFAICT put the downloadUserAgentas default user-agent. perhaps you can show your code.

`var playapi = require('gpapi').GooglePlayAPI({
"username": "xx@gmail.com",
"password": "xx",
"androidId": "xx",
"sdkVersion":23,
"apiUserAgent": "Android-Finsky/8.8.12-all (api=3,versionCode=80881200,sdk=23,device=mp1s3gss,hardware=mp1s3gss,product=mp1s3gss_global_com,platformVersionRelease=6.0,model=LG-H542,buildId=MRA58K,isWideScreen=0,supportedAbis=armeabi-v7a;armeabi)",
"downloadUserAgent": "AndroidDownloadManager/6.0 (Linux; U; Android 6.0; LG-H542 Build/MRA58K)"
});

playapi.details("com.mobinavel.KeepTheBall", function (err, res) {

playapi.completeDownloadInfo("com.mobinavel.KeepTheBall", res.details.appDetails.versionCode)
.then(
function (downloadResult, x, y, z, t) {
console.log(downloadResult)
}).catch(function (err, x, y, z) {
console.log(err);
});

});`
this is the code that i used. firstly, i got details of app and downloaded app using version code. When i debug this code, i realized that completeDownloadInfo goes to post request and sets user-agent to apiuseragent.

closed due to inactivity. can't confirm if this is actually a bug or not enough information to determine that. please update the issue with more information and re-open if it's still happening