我正在使用Google Play Developer API v2 以编程方式在Play商店上传我的测试版,并且工作正常: - )
现在,我想以编程方式'推广'来自' beta'追踪生产'跟踪(所以我不需要在Google Dev Console上手动完成。我的应用程序套件由10个应用程序组成..这需要时间)
我正在尝试,但我不清楚我是怎么想在不重新上载apks的情况下做的 我想要实现的是修改之前上传的apks,只需更改Track,来自' beta'生产'。
以下是我写的代码,其中包含:
SEVERE: Exception was thrown while updating listing com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden { "code" : 403, "errors" : [ { "domain" : "androidpublisher", "message" : "Testing-track (alpha/beta) APK with version code 1522428584 appears in another track", "reason" : "testingTrackApkInMultipleTracks" } ], "message" : "Testing-track (alpha/beta) APK with version code 1522428584 appears in another track" } at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:146) at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:113) at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40) at com.google.api.client.googleapis.services.AbstractGoogleClientRequest$1.interceptResponse(AbstractGoogleClientRequest.java:321) at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1065) at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419) at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:352) at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469) at com.elementique.tools.publish.elementique.ElementiquePromoteBetaApkToProduction.main(ElementiquePromoteBetaApkToProduction.java:74)
根据例外情况,我编写的代码不会修改现有的apk,而是尝试创建一个与现有beta轨道具有相同ID的新代码。
我明白这是错的,但无法弄清楚如何正确行事......
以下是代码:有人可以解释我如何以正确的方式做到这一点吗?
感谢。
package com.elementique.tools.publish.elementique;
import com.elementique.tools.publish.AndroidPublisherHelper;
import com.google.api.services.androidpublisher.AndroidPublisher;
import com.google.api.services.androidpublisher.AndroidPublisher.Edits;
import com.google.api.services.androidpublisher.model.*;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.ArrayList;
import java.util.List;
public class ElementiquePromoteBetaApkToProduction {
private static final Log log = LogFactory.getLog(ElementiquePromoteBetaApkToProduction.class);
private static final String PACKAGE_NAME = "com.elementique.home";
public static final String TRACK_BETA = "beta";
public static final String TRACK_PRODUCTION = "production";
public static void main(String[] args) {
try {
// Create the API androidPublisher service.
final AndroidPublisher androidPublisher = AndroidPublisherHelper.init("Elementique", null);
final Edits edits = androidPublisher.edits();
// Create a new edit to make changes.
Edits.Insert insertEdit = edits.insert(PACKAGE_NAME, null);
AppEdit insertAppEdit = insertEdit.execute();
// search for 'beta' apk(s) in the 'beta' track..
// first list all tracks..
TracksListResponse trackListResponse = edits.tracks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();
for (Track track : trackListResponse.getTracks()) {
// filter for beta track..
if (TRACK_BETA.equals(track.getTrack())) {
// beta track found...
System.out.println("Beta Track found!\n" + track.toPrettyString());
// in my case, I am supposed to have exactly one 'beta' apk
List<Integer> betaApkVersionCodes = track.getVersionCodes();
if (betaApkVersionCodes.size() == 1) {
// one apk: OK, that's the 'beta' apk I want to promote to 'production'
Integer betaApkVersionCode = betaApkVersionCodes.get(0);
// now search for the given apk among all existing apks (is it the good way to proceed..??)
ApksListResponse apksListResponse = edits.apks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();
for (Apk apk : apksListResponse.getApks()) {
// is it our 'beta' apk?
if (betaApkVersionCode.equals(apk.getVersionCode())) {
System.out.println("Beta apk found!\n" + apk.toPrettyString());
// OK, we got it.
// now trying to change the 'track' of this apk from 'beta' to 'production'
// and this is not the way to proceed...
List<Integer> apkVersionCodes = new ArrayList<>();
apkVersionCodes.add(apk.getVersionCode());
Edits.Tracks.Update updateTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_PRODUCTION,
new Track().setVersionCodes(apkVersionCodes));
Track updatedTrack = updateTrackRequest.execute();
log.info(String.format("Track %s has been updated.", updatedTrack.getTrack()));
// Commit changes for edit.
Edits.Commit commitRequest = edits.commit(PACKAGE_NAME, insertAppEdit.getId());
AppEdit commitAppEdit = commitRequest.execute();
log.info(PACKAGE_NAME + " beta apk moved to production (" + commitAppEdit.getId());
System.exit(0);
}
}
}
}
}
} catch (IOException | GeneralSecurityException ex) {
log.error("Exception was thrown while updating listing", ex);
}
}
}
(不要告诉我关于括号的地狱,我只是编写了这样的代码来做一个简单的测试; - )
注意:
答案 0 :(得分:1)
Nailed it :-)
可以在此处找到解释:https://developers.google.com/android-publisher/tracks
以编程方式宣传&#39; beta&#39;的示例代码跟踪生产&#39;轨道:
package com.elementique.tools.publish.elementique;
import com.elementique.tools.publish.AndroidPublisherHelper;
import com.google.api.services.androidpublisher.AndroidPublisher;
import com.google.api.services.androidpublisher.AndroidPublisher.Edits;
import com.google.api.services.androidpublisher.model.AppEdit;
import com.google.api.services.androidpublisher.model.Track;
import com.google.api.services.androidpublisher.model.TracksListResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.ArrayList;
import java.util.List;
// Google Play Developer API v2 javadoc:
// https://developers.google.com/resources/api-libraries/documentation/androidpublisher/v2/java/latest/index.html?com/google/api/services/androidpublisher/AndroidPublisher.html
// + this: https://developers.google.com/android-publisher/api-ref/
public class ElementiquePromoteBetaApkToProduction {
private static final Log log = LogFactory.getLog(ElementiquePromoteBetaApkToProduction.class);
private static final String PACKAGE_NAME = "com.elementique.home";
public static final String TRACK_BETA = "beta";
public static final String TRACK_PRODUCTION = "production";
public static void main(String[] args) {
try {
final AndroidPublisher androidPublisher = AndroidPublisherHelper.init("Elementique", null);
final Edits edits = androidPublisher.edits();
// Create a new edit to make changes.
Edits.Insert insertEdit = edits.insert(PACKAGE_NAME, null);
AppEdit insertAppEdit = insertEdit.execute();
// Promote beta to production: doc here:
// https://developers.google.com/android-publisher/tracks
TracksListResponse trackListResponse = edits.tracks().list(PACKAGE_NAME, insertAppEdit.getId()).execute();
Track betaTrack = null;
Track productionTrack = null;
// list current tracks.
// searching for exactly one beta and one production...
for (Track track : trackListResponse.getTracks()) {
if (TRACK_BETA.equals(track.getTrack())) {
if (track.getVersionCodes().size() == 1) {
// one version: OK, that's the 'beta' apk I want to promote to 'production'
betaTrack = track;
log.info(PACKAGE_NAME + ": found 'beta' apk " + betaTrack.getVersionCodes().get(0));
}
} else if (TRACK_PRODUCTION.equals(track.getTrack())) {
if (track.getVersionCodes().size() == 1) {
// one version: OK, that's the 'production' apk I want to replace with the former 'beta' apk
productionTrack = track;
log.info(PACKAGE_NAME + ": found 'production' apk" + productionTrack.getVersionCodes().get(0));
}
}
}
if (betaTrack != null && productionTrack != null) {
// first set production track to version of current beta
Edits.Tracks.Update updateProductionTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_PRODUCTION,
new Track().setVersionCodes(betaTrack.getVersionCodes()));
updateProductionTrackRequest.execute();
// .. then clear beta version(no more beta apk)
Edits.Tracks.Update updateBetaTrackRequest =
edits.tracks().update(
PACKAGE_NAME,
insertAppEdit.getId(),
TRACK_BETA,
new Track().setVersionCodes(new ArrayList<>()));
updateBetaTrackRequest.execute();
// Commit changes for edit
Edits.Commit commitRequest = edits.commit(PACKAGE_NAME, insertAppEdit.getId());
AppEdit commitAppEdit = commitRequest.execute();
log.info(PACKAGE_NAME + ":" +
" 'production' apk " + productionTrack.getVersionCodes().get(0) + "" +
" replaced by 'beta' apk " + betaTrack.getVersionCodes().get(0));
}
} catch (IOException | GeneralSecurityException ex) {
log.error(PACKAGE_NAME + " : Error while trying to promote 'beta' apk to 'production'", ex);
}
}
}