我在验证GCM令牌时有点困惑。我使用Sencha框架在跨平台应用程序中工作,我的服务器端是Java。我有一个关于如何验证注册ID(GCM令牌)的查询?是否有任何特定的API来验证GCM令牌?你能指导我如何在客户端或服务器端处理这个问题吗?我已经在服务器端做了注册部分,用户可以在数据库中注册他们的GCM令牌。现在我需要验证这个注册令牌。
每两周取消注册一次申请是一种好办法吗?
答案 0 :(得分:7)
您注册到GCM并从客户端的GCM取消注册。这就是您从Google获取注册ID的地方。
一旦你有了注册ID,你应该认为它有效,直到:
您向Google的GCM服务器发送包含注册ID的邮件,并收到NotRegistered或InvalidRegistration错误。在这些情况下,您应该从数据库中删除注册ID。
您将带有注册ID的邮件发送到Google的GCM服务器并获得成功的响应,但该响应包含规范的注册ID。在这种情况下,您应该使用规范注册ID替换注册ID。
该应用从GCM明确取消注册,并通知服务器,在这种情况下,您应该从数据库中删除注册ID。
我认为每两周取消注册该应用程序没有任何意义。 Google的代码示例仅在安装了新版本后重新注册应用程序,即使这样,在重新注册之前,它们也不会取消注册。
答案 1 :(得分:1)
使用canonicalID解决GCM验证的解决方案 link
private void asyncSend(List<String> partialDevices) {
// make a copy
final List<String> devices = new ArrayList<String>(partialDevices);
threadPool.execute(new Runnable() {
public void run() {
Message message = new Message.Builder().build();
MulticastResult multicastResult;
try {
multicastResult = sender.send(message, devices, 5);
} catch (IOException e) {
logger.log(Level.SEVERE, "Error posting messages", e);
return;
}
List<Result> results = multicastResult.getResults();
// analyze the results
for (int i = 0; i < devices.size(); i++) {
String regId = devices.get(i);
Result result = results.get(i);
String messageId = result.getMessageId();
if (messageId != null) {
logger.fine("Succesfully sent message to device: " + regId +
"; messageId = " + messageId);
String canonicalRegId = result.getCanonicalRegistrationId();
if (canonicalRegId != null) {
// same device has more than on registration id: update it
logger.info("canonicalRegId " + canonicalRegId);
Datastore.updateRegistration(regId, canonicalRegId);
}
} else {
String error = result.getErrorCodeName();
if (error.equals(Constants.ERROR_NOT_REGISTERED)) {
// application has been removed from device - unregister it
logger.info("Unregistered device: " + regId);
Datastore.unregister(regId);
} else {
logger.severe("Error sending message to " + regId + ": " + error);
}
}
}
}});
}