"message": "The project id used to call the Google Play Developer API has not been linked in the Google Play Developer Console.",
"errors": [
{
"message": "The project id used to call the Google Play Developer API has not been linked in the Google Play Developer Console.",
"domain": "androidpublisher",
"reason": "projectNotLinked"
}
]
}
}
复制代码
没有授权,接下来开始授权
4.1、Google Cloud关联
首先须要设置 Google Cloud 而且设置相关的账号,对应指定的应用。
点击项目的 API Access 中
假如这一步你没有 Google Cloud 账号,可以创建或关联已有的 Google Cloud 账号,这里我没有就直接创建了Google Cloud 账号。关联之后我们就能看到上图所示的画面。
我们可以直接在谷歌市场控制台中的 API Access 中直接进入谷歌云后台,也能 直接输入网址 https://code.google.com/apis/console/ 是一样的效果。
我们关联 Google Cloud 账号之后,默认就已经开通 Google Play Developer API 权限。
点击保存修改之后就完成了,由于我们关联账号的时候已经勾选了 Google Play Android Developer API 权限,我们如今直接就能用了。
后端的用法各平台的使用方式差别,但是都是很简单的,直接集成谷歌的API,然后统共就两步,第一步设置Config属性把这个 Service Account 生成的Json文件传入,第二步直接调用 GoogleAPI 内置的校验方法即可,都是API内置了的更方便。
当我们客户端把packageName ,prodectId,purchaseToken 三个字段传给后端,他们直接调用 API 就能直接校验,相比 Web-OAuth 的方式要更简单一些。
校验结果如下:
OK,两种方法 Web-OAuth 的授权方式,以及 Service Account 的授权方式,两种都可以到达效果,用哪种都可以。
至此谷歌内购全部流程已竣事。
丢单问题处理
使用
_inAppPurchase.purchaseStream是用来监听消息队列的回调的,也就是全部订单的状态以及信息回调,in_app_purchase这个属性的文档中这么说到:
IMPORTANT! You must subscribe to this stream as soon as your app launches,
preferably before returning your main App Widget in main(). Otherwise you
will miss purchase updated made before this stream is subscribed to.
重要!你必须在应用程序启动后立即订阅此流,
最好在main()中返回主应用程序小部件之前。
否则你将错过订阅此流之前更新的购买。
也就是说当我们的App在第一次启动的时候可以订阅此流来完成补单的操作,但是假如用户是之前丢单了,然后把App又卸载了,再次下载打开App后并没有进行登录操作,那用户的登录信息都拿不到怎么进行补单操作呢?
补单解决方案