如何通过Google Developer API验证发布状态?

时间:2018-11-23 15:20:41

标签: android google-api google-api-client google-api-java-client google-publisher-tag

我只是想通过Google开发人员API验证我的应用发布请求的状态,您可以从Google Play控制台轻松看到它: Published Apps Request List

我的问题是Google AndroidPublisher API为我提供的一种“抛弃式”方法,是您构建 Edit -上传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之类的客户端库来轮询端点以检索我的提交状态的能力

0 个答案:

没有答案