如何测试 Google 播放订阅的实时通知?
How to test Google Play Real Time Notifications for Subscriptions?
我正在尝试在我的应用中实现应用内订阅。所以,首先我设置了实时通知。但问题是我无法测试它们的应用内订阅。谁能帮我这个?让我描述一下我有什么。
- 我创建了主题
- 创建了该主题的订阅
- 在订阅中添加了端点
- 在服务和 API 部分的 play.google.com 中添加了主题名称
- 在我的服务器上添加了端点,这样我就可以接收请求
当我点击 SEND TEST NOTIFICATION 按钮时,我可以成功收到请求,但问题是请求没有任何值,如此处所述。
https://developer.android.com/google/play/billing/realtime_developer_notifications
根据link,
Each publish made to a Pub/Sub topic contains a single base64-encoded DeveloperNotification with the following fields:
{
"version": string,
"packageName": string
"eventTimeMillis": long
"oneTimeProductNotification": OneTimeProductNotification
"subscriptionNotification": SubscriptionNotification
"testNotification": TestNotification
}
和
A TestNotification contains the following fields:
{
"version": string
}
所以我的问题是,如何测试这个Json?我的意思是为什么请求没有值?
谢谢。
对不起伙计们。
我发现了问题。
我试图以错误的方式获取字段。由于我的服务器技术是 PHP,我试图从 $_POST 数组中获取,但正确的方法是
$result = file_get_contents("php://input");
我正在尝试在我的应用中实现应用内订阅。所以,首先我设置了实时通知。但问题是我无法测试它们的应用内订阅。谁能帮我这个?让我描述一下我有什么。
- 我创建了主题
- 创建了该主题的订阅
- 在订阅中添加了端点
- 在服务和 API 部分的 play.google.com 中添加了主题名称
- 在我的服务器上添加了端点,这样我就可以接收请求
当我点击 SEND TEST NOTIFICATION 按钮时,我可以成功收到请求,但问题是请求没有任何值,如此处所述。
https://developer.android.com/google/play/billing/realtime_developer_notifications
根据link,
Each publish made to a Pub/Sub topic contains a single base64-encoded DeveloperNotification with the following fields:
{
"version": string,
"packageName": string
"eventTimeMillis": long
"oneTimeProductNotification": OneTimeProductNotification
"subscriptionNotification": SubscriptionNotification
"testNotification": TestNotification
}
和
A TestNotification contains the following fields:
{
"version": string
}
所以我的问题是,如何测试这个Json?我的意思是为什么请求没有值?
谢谢。
对不起伙计们。 我发现了问题。 我试图以错误的方式获取字段。由于我的服务器技术是 PHP,我试图从 $_POST 数组中获取,但正确的方法是
$result = file_get_contents("php://input");