Android 如何从google play获取我自己的应用程序列表

Android 如何从google play获取我自己的应用程序列表,android,google-play,Android,Google Play,我在Google play上发布了一些应用程序,它们也是实时的。Google play是否公开任何rest API?这样我就可以在Google play上列出我的所有应用程序,并在当前应用程序中向用户显示。 提前谢谢 因此,不存在用于获取应用程序列表的API。这是一份关于的文档,您可以从本页中找到。答案如下,可能会对某些人有所帮助:) private void showMyApps(){ Intent intent = new Intent(Intent.ACTION_

我在Google play上发布了一些应用程序,它们也是实时的。Google play是否公开任何rest API?这样我就可以在Google play上列出我的所有应用程序,并在当前应用程序中向用户显示。
提前谢谢

因此,不存在用于获取应用程序列表的API。这是一份关于的文档,您可以从本页中找到。

答案如下,可能会对某些人有所帮助:)

 private void showMyApps(){
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse("http://play.google.com/store/search?q=pub:publisher name"));
            startActivity(intent);
        }