我正在使用Google API v2以编程方式将我的beta apks上传到playstore上,它运行得很好:-)
现在,我想programmatically‘推广’测试版apks从' beta‘轨道到’生产‘轨道(所以我不需要手动在Google控制台上这样做了。我的应用程序套件由10个应用程序组成。这需要时间)
我正在尝试,但我不清楚我应该如何做而不重新上传apks。
我想要实现的是修改以前上传的apks,只需将跟踪从“beta”更改为“生产”。
下面是我编写的代码,它可以:
严重:在更新列表com.google.api.client.googleapis.json.GoogleJsonResponseException: 403时抛出异常(“代码”:403、“错误”:{“域”:"androidpublisher“、”消息“:”使用版本代码1522428584跟踪(alpha/beta) APK )“、”原因“:"testingTrackApkInMultipleTracks”},“消息”:“在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上出现带有版本代码1522428584的测试(alpha/beta) APK”}.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的新apk。
我知道这是不对的,但我想不出怎么做才对。
这是代码:有人能解释我怎么做正确的方法吗?
谢谢。
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);
}
}
}
(不要告诉我括号的地狱,我只是写了这样的代码来做一个简单的测试;-)
备注:
发布于 2018-04-01 22:30:54
钉死它:)
在这里可以找到解释:https://developers.google.com/android-publisher/tracks
以编程方式将“beta”轨道提升到“生产”轨道的示例代码:
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);
}
}
}
https://stackoverflow.com/questions/49588393
复制相似问题