0

我目前正在制作一款针对 android 的多平台游戏。我希望能够在有人购买我的应用程序以将他添加到我的数据库中的“可激活邮件”时收到通知,以让他在同一个数据库中创建一个帐户。所以我需要谷歌以任何方式自动向我发送买家的邮件。我已经阅读了一些关于 Notification API 的信息,但它似乎不适用于 Android 市场。

4

3 回答 3

1

AccountManager 应该有所帮助: 如何获取 Android 设备的主电子邮件地址

需要一些额外的权限,并且可以有多个 android 帐户,因此您应该要求用户选择一个。

于 2012-12-12T22:15:44.387 回答
1

您可以使用 Google checkout API 来获得购买通知。IIRC,它包含有关用户的一些信息,包括电子邮件地址。它仅在美国(也许还有英国)可用,所以如果您在另一个国家/地区,您就不走运了。在 Checkout 控制台中查找“商家密钥”,如果可以找到,则可以使用 API。

于 2012-12-13T03:54:35.380 回答
0

AFAIK There exists no API to do what you want.

Your best bet is just adding whatever notification you need to send to the first run of your application. That way after someone buys it and runs it the first time it will send a notification to your server or wherever you need it to go.

于 2012-12-12T22:02:53.167 回答