1

我只是想通过 Google 开发者 API 验证我的应用程序发布请求的状态,您可以从 Google Play 控制台轻松查看:已 发布的应用程序请求列表

我的问题是 Google AndroidPublisher API 提供给我的一种“即发即弃”的方法,您是否构建了您的编辑- 您上传您的 APK、修改您的商品详情等……然后您只需提交。

提交功能: https ://developers.google.com/android-publisher/api-ref/edits/commit

我已经实施的:

AndroidPublisher.java

// code removed for brevity
...
...


edit.validate();

edit.commit();

AndroidAppEdit.java

public void validate() throws ProcessingFailedException {
    try {
        service.edits()
                .validate(packageName, editId)
                .execute();
    } catch (IOException e) {
        throw new ProcessingFailedException("Failed to validate the edit", e);
    }
}

public void commit() throws ProcessingFailedException {
    try {
        service.edits()
                .commit(packageName, editId)
                .execute();
    } catch (IOException e) {
        throw new ProcessingFailedException("Failed to commit the edit", e);
    }
}

我想要实现什么?

能够通过 REST 或通过AndroidPublisher等客户端库轮询端点以检索我的提交的状态/状态

4

0 回答 0