我正在尝试使用适用于 Java 的 Google API 客户端库来获取有关在我的 Android 应用程序中购买的用户订阅的信息。然后我得到这个错误:
{
"code" : 401,
"errors" : [ {
"domain" : "androidpublisher",
"message" : "The current user has insufficient permissions to perform the requested operation.",
"reason" : "permissionDenied"
} ],
"message" : "The current user has insufficient permissions to perform the requested operation."
}
我正在尝试这些步骤:
创建项目(或选择现有项目)
创建具有 Pub/Sub 管理员角色的服务帐户
转到https://console.cloud.google.com/apis/library并搜索“Google Play Android Developer API”
启用该 API
转到设置 > 开发者帐户 > API 访问
链接您在步骤 2 中创建的项目
将显示您在步骤 3 中创建的服务帐户
在 Play 控制台中向应用授予具有 Finance 权限的访问权限
等待至少 24 小时以使更改生效。
相关分类