Android GCM 中的通知生成问题
Posted
技术标签:
【中文标题】Android GCM 中的通知生成问题【英文标题】:Notification generation issue in Android GCM 【发布时间】:2013-08-26 09:13:32 【问题描述】:我遇到以下两个问题:
第一个问题:
我必须注册两个使用同一设备的客户,所以他们有相同的注册 ID。
当我从服务器端向这两个客户发送报价时,显示的通知应该取决于登录的客户。
例如(见图):
在我的应用程序中,我有一个客户登录表单。在这种形式中,如果用户gnanavel
登录,应用程序必须单独接收他的报价,而不是其他人的报价。
同样,如果用户jeya
登录,应用程序必须单独接收她的报价,而不是其他人的报价。
目前该应用正在接收这两个优惠。
编辑:
我已经在我的数据库中创建了登录状态字段。如果我的客户登录设备意味着单独收到他的报价通知。我没有收到其他人的报价。它运作良好。
我在点击报价按钮时检查了条件:
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
我写了这些条件意味着我的第一个问题已经解决了。但是提出了另一个问题。
另一个问题是,
当管理员输入一些报价时,客户只有在登录客户时才能在设备上收到通知。否则,不应收到通知。这部分运行良好。
问题是,当我的客户长时间退出时,管理员在此期间输入了更多优惠。
如果客户在 2 天后登录应用程序,他应该会收到所有待处理的消息。如何获取待处理的消息?
管理员方输入客户退出的时间意味着数据库中的登录状态为“N”。那么如何执行这些条件并接收通知。
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
这是我点击报价按钮时执行的服务器端代码:
if (isset($_GET["regId"]) && isset($_GET["customer_id"]) && isset($_GET["message"]))
$regId = $_GET["regId"];
$message = $_GET["message"];
$customer_id = $_GET["customer_id"];
include_once './GCM.php';
$getregid = mysqli_query($con,"select * from pim_customers where customer_id='$customer_id' and gcm_regid='$regId' and loginstatus='Y'");
$count1=mysqli_num_rows($getregid);
while($row = mysqli_fetch_array($getregid))
$id=$row['customer_id'];
if (mysqli_num_rows($getregid) > 0)
$query = mysqli_query($con,"select count(offer) as count from pim_productdeal where customer_id='$id' and offer!=''");
$count = mysqli_fetch_array($query);
$msg = $count['count'];
$gcm = new GCM();
$registatoin_ids = array($regId);
$message = array("price" => $msg." "."The offers received");
$result = $gcm->send_notification($registatoin_ids, $customer_id, $message);
echo $result;
这是我的 android 端代码:
public class GCMIntentService extends GCMBaseIntentService
private static final String TAG = "GCMIntentService";
String regId;
public GCMIntentService()
super(SENDER_ID);
@Override
protected void onRegistered(Context context, String registrationId)
ServerUtilities.register(context, RegisterActivity.first_name, RegisterActivity.last_name, RegisterActivity.email, RegisterActivity.password, registrationId);
@Override
protected void onUnregistered(Context context, String registrationId)
Log.i(TAG, "Device unregistered");
displayMessage(context, getString(R.string.gcm_unregistered));
ServerUtilities.unregister(context, registrationId);
@Override
protected void onMessage(Context context, Intent intent)
Log.i(TAG, "Received message");
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
regId = GCMRegistrar.getRegistrationId(this);
String message = intent.getExtras().getString("price");
displayMessage(context, message);
if(Constants.response != null)
generateNotification(context,message);
@Override
protected void onDeletedMessages(Context context, int total)
Log.i(TAG, "Received deleted messages notification");
String message = getString(R.string.gcm_deleted, total);
displayMessage(context, message);
// notifies user
generateNotification(context,message);
@Override
public void onError(Context context, String errorId)
Log.i(TAG, "Received error: " + errorId);
displayMessage(context, getString(R.string.gcm_error, errorId));
@Override
protected boolean onRecoverableError(Context context, String errorId)
// log message
Log.i(TAG, "Received recoverable error: " + errorId);
displayMessage(context, getString(R.string.gcm_recoverable_error,
errorId));
return super.onRecoverableError(context, errorId);
private static void generateNotification(Context context,String message)
int icon = R.drawable.icon;
long when = System.currentTimeMillis();
NotificationManager notificationManager = (NotificationManager)
context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name);
Intent notificationIntent = new Intent(context, MyDealProducts.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent =
PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notificationManager.notify(0, notification);
【问题讨论】:
【参考方案1】:我编辑了您的问题以使其更易于理解。我希望我没有改变你的意思。如果我这样做了,我向你道歉并请你纠正我。
现在我的答案是:
您的服务器应该知道哪个用户当前登录到哪个设备。您应该在您的服务器中维护一个登录用户表,并且对于每个登录用户,它将保存他/她登录的设备的标识符。为此,您必须向您的服务器发送请求每次用户登录或注销时。该请求应包含用户 ID 和设备 ID。对于设备 ID,您可以使用注册 ID 或使用您的服务器生成的其他 ID(最好在您的服务器中生成一个比注册 ID 更短的 ID,因此使用效率更高。您将必须维护一个将注册 ID 映射到设备 ID 的表。
当管理员创建新优惠并将其分配给用户时,只有当用户登录时,您才会向应用发送 GCM 通知。因此,在您的两个用户使用同一设备的示例中,如果其中一个已登录,您将只向该设备发送一个通知给登录用户。如果他们都没有登录,您将不会发送任何通知。您将在数据库中存储新的报价并等待其中一个登录。
当 GCM 消息到达设备时,您应该将其发送给当前登录的用户,因为可能有一个用户在消息发送后退出,而另一个用户在消息发送之前登录到达设备。为此,您的 GCM 消息应包含用户标识符作为附加字段。如果一条消息以与当前登录用户不匹配的用户 ID 到达设备,您将丢弃该消息并且不显示通知。
当用户登录时,服务器会收到一个请求(参见 #1)。在此请求的响应中,服务器应将用户在服务器数据库中的所有报价返回给设备。
对于在设备长时间处于非活动状态时发送的消息 - 当设备再次变为活动状态时,可能会从 GCM 向其发送旧消息(如果它们尚未被 GCM 丢弃然而)。如果这些消息不属于当前登录的用户,则丢弃它们(参见#3)。如果它们属于当前登录的用户,则应显示它们。
我不了解 PHP,但根据我对您服务器代码的有限理解,您似乎向设备发送了一条 GCM 消息,其中包含用户拥有的优惠数量。您可能应该对您发送的所有消息使用相同的 collapse_key。这样,如果您的服务器在设备离线时发送了多条消息,那么当设备再次变为活动状态时,只会将其中一条发送到设备。如果它们包含的只是可用报价的数量,则您不需要获取所有待处理的消息。
【讨论】:
请查看我编辑的问题并给我解决方案 yaar..感谢您的编辑并给出一个很好的答案。但我提出了另一个问题。 @user2218667 不客气。我已经解决了你的第二个问题。当客户在很长一段时间(如 2 天)后登录时,您不应使用 GCM 向客户提供优惠。当客户登录时,应用程序已经在运行,因此应用程序可以请求服务器向其发送该客户拥有的所有优惠。然后,该应用可以根据您的意愿显示这些优惠。【参考方案2】:从服务器发送消息时,您不必设置time_to_live
。根据docsdefault time-to-live is 4 weeks
同时确保您没有在用户注销时取消注册设备。
【讨论】:
:这里我没有提到 TTL。如果我的客户注销意味着设备 ID 仅可用。【参考方案3】:当您从服务器发送推送通知时,添加一个 Notification_id 字段。现在在您的手机中使用本地数据库 (SQLite) 来管理已显示给用户的通知 ID。
您需要调用您的网络服务器,以便在应用启动时获取所有通知的当前列表。这样来自服务器的通知 id 可以与本地通知 id 匹配。然后,您可以获取那些 id 不在您的数据库中的特定通知的详细信息。
【讨论】:
以上是关于Android GCM 中的通知生成问题的主要内容,如果未能解决你的问题,请参考以下文章
Android 解析推送通知和新 GCM 生成错误的设备令牌并解析推送通知不起作用
如何在phonegap上使用GCM处理android中的多个推送通知