- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在我的应用程序中实现 GCM。我已按照 developer.android.com 的 GCM 教程中给出的所有步骤进行操作
我能够从 GCM 成功获取注册 ID,并将此 ID 传递到我的应用程序服务器。至此注册步骤执行成功。
现在,当我的应用程序服务器向我的设备发送 PUSH 消息时,服务器收到的消息为 SUCCESS=8 FAILURE=0 等,即服务器成功发送消息,但 OnMessage 被调用8次取决于成功值。
我的设备在没有任何代理设置的情况下连接到我的组织 wifi。
所以我的问题是:为什么我从 GCM 收到 PUSH 消息的时间与成功值一样多。为什么谷歌提供那么多时间?可能是什么原因?
我的 GCMBaseIntentService 看起来像
public class GCMIntentService extends GCMBaseIntentService {
public GCMIntentService() {
super(GCMActivity.SENDER_ID);
}
@Override
protected void onError(Context arg0, String arg1) {
Log.d("GCM", "RECIEVED A ERROR MESSAGE");
// TODO Auto-generated method stub
}
@Override
protected void onRegistered(Context arg0, String registrationId) {
//Send the registration id to my app server to store the reg id list
GCMActivity.sendRegIdtoApplicationServer(registrationId);
}
@Override
protected void onUnregistered(Context arg0, String registrationId) {
// TODO Auto-generated method stub
}
@Override
protected void onMessage(Context context, Intent intent) {
Log.d("GCM", "RECIEVED A MESSAGE");
// Get the data from intent and send to notificaion bar
String data = intent.getStringExtra("data");
String action = intent.getAction();
if((action.equals("com.google.android.c2dm.intent.RECEIVE"))) {
try {
JSONObject jsonObject = new JSONObject(data);
boolean updateStatus = jsonObject.getBoolean("update");
if (updateStatus) {
//Showing Notification to user
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我的 Activity 看起来像
public class GCMActivity extends Activity {
public final static String SENDER_ID = "872355133485";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gcm);
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);
final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
GCMRegistrar.register(this, SENDER_ID);
} else {
// sendRegIdtoApplicationServer(regId);
Log.v("gh", "Already registered");
System.out.println("RegisterID:"+ regId);
}
}
And Manifest file will be
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.aspire.gcmsample"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<permission android:name="com.aspire.gcmsample.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.aspire.gcmsample.permission.C2D_MESSAGE" />
<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- GCM connects to Google Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" android:debuggable="true">
<activity
android:name=".GCMActivity"
android:label="@string/title_activity_gcm" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.aspire.gcmsample" />
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
</application>
</manifest>
这是我的服务器端代码
Properties apHeaders = new Properties();
// Use your own credentials for the below three lines
apHeaders.put("Content-Type", "application/json");
apHeaders.put("Authorization","key="+apiKey);
/*String data = "{\"registration_ids\":"+ devicesList +", \"data\":" +
"{\"data\":{\"score\" : \"1-0\", \"scorer\" : \"Ronaldo\", \"time\" : \"44\"}}}";*/
// get all registration Device ID from database
ArrayList<String> deviceId = DBRegistration.getInstance().fetchRegId();
String data = "{\"registration_ids\":"+ deviceId +", \"data\":" +
"{\"data\":{\"update\" : \"true\", " +
"\"file\": \"http://192.168.4.210:8080/FileDownload/DownloadFile?path=GCMSample.apk\"}}}";
String result = DBRegistration.getInstance().sendRequest(url, data, apHeaders);**
System.out.println("responseC"+ result);
out.println(result);
out.flush();
String apServerUrl = "https://android.googleapis.com/gcm/send";
public String sendRequest(String apServerUrl, String payload, Properties headers) {
// Setup Http URL connection
HttpURLConnection connection = null;
// Enable proxy if it needed.
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(PROXY_URL, PROXY_PORT));
try {
URL url = new URL(apServerUrl);
// Enable proxy if needed.
connection = (HttpURLConnection) url.openConnection(proxy);
//connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);
Object[] keys = headers.keySet().toArray();
for (int i = 0; i < keys.length; i++) {
connection.setRequestProperty((String) keys[i],
(String) headers.get(keys[i]));
}
//connection.setRequestProperty("Content-Length", ""+ payload.length());
} catch (Exception e) {
System.out.println("Failed setting up HTTP Connection\n" + e);
}
// Send the Request
String line = "";
String returnedResponse = "";
BufferedReader reader = null;
System.out.println("Request: " + payload);
try {
OutputStream os = connection.getOutputStream();
os.write(payload.toString().getBytes("UTF-8"));
os.close();
int status = connection.getResponseCode();
if (status != 200) {
System.out.println("HTTP Error code " + status
+ " received, transaction not submitted");
reader = new BufferedReader(new InputStreamReader(connection
.getErrorStream()));
} else {
reader = new BufferedReader(new InputStreamReader(connection
.getInputStream()));
}
while ((line = reader.readLine()) != null) {
returnedResponse += line;
}
} catch (Exception e) {
returnedResponse = e.getMessage();
System.out.println(e);
} finally {
try {
if (reader != null)
reader.close();
if (connection != null)
connection.disconnect();
} catch (Exception e) {
returnedResponse = e.getMessage();
System.out.println(e);
}
}
System.out.println(returnedResponse);
return returnedResponse;
}
从 GCM 服务器到我的应用服务器的响应。
{"multicast_id":6552291927399218343,"success":13,"failure":0,"canonical_ids":0,"results":[{"message_id":"0:1356332586480671%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480674%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481759%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480807%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481944%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480996%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481939%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586482000%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481997%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481942%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586482003%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586481948%79fa3a68f9fd7ecd"},{"message_id":"0:1356332586480995%79fa3a68f9fd7ecd"}]}
最佳答案
您从 GCM 发送到服务器的响应是什么样的?有可能您使用不同的 ID 注册了同一台设备 8 次,这对我来说似乎是最有可能的原因。
您还应该查看发送到 GCM 服务器的代码,以确保您没有八次发送相同的注册 ID。
此处记录了响应格式:https://developer.android.com/google/gcm/gcm.html#response
基于此,我会查看您是否收到任何规范 ID,这将有助于向您表明您已多次注册同一设备。您可以在此处阅读有关如何处理规范 ID 的更多信息:android GCM get original id of canonical id
关于android - GCM : onMessage() from GCMIntentService is called Many times?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13987759/
我想我理解 GCM 的新 notification_key 功能背后的基本原理是“只需将消息发送给用户并且只让他们阅读一次”。我从文档的这一部分推断出来: With user notification
我实现了网络推送通知。获取错误的步骤: 打开网站 订阅推送通知 通过 gcm 发送许多推送 - 一切正常 关闭网站标签 发送推送和接收“双推送”- 第一个正常,第二个是“此站点已在后台更新” 重新打开
我正在手机上测试 GCM。 (2.3.6 安卓). list 文件(MainActivity、First 和 Second Activity 不执行任何操作,它们用于其他一些测试目的,不干扰 GCM)
首先,我是 iOS 开发的新手,也是 swift 的新手。我正在尝试让适用于 iOS 的谷歌云消息传递示例。 我已经从 https://developers.google.com/cloud-mess
你们中的任何人都可以提供 GCM 推送通知的代码,其中消息从移动设备推送到 GCM 服务器。我已经从 GCM 服务器到移动设备及其工作进行了操作,但我不知道反之亦然如何操作。任何人都可以提供帮助吗?谢
我们有两个不同的应用程序,但都需要来自 Google Cloud Messages 的相同推送通知,并且我在两个应用程序中只使用了一个发件人 ID(启用 Google 控制台之一的项目编号)。 这样做
我有一个广播接收器,当应用程序打开并在后台时,它会检测即将到来的通知,但当最近的应用程序被清除时,接收器无法工作,请给我建议。 public class GcmBroadcastReceiver ex
我想从我的应用程序向 GCM 服务器发送一个心跳信号,以便连接保持有效。 我该怎么做,我怎么知道我的 GCM 服务器的 URL? 提前致谢! 最佳答案 如何发送心跳 这个类可以发送正确的 Intent
新的 GCM 3.0 应该允许 GCM 自动显示从服务器发送的通知,如果它们包含 notification 参数。 如 docs 中所述: The notification parameter wit
这个问题在这里已经有了答案: Do I need to migrate GCM to FCM on client side? (2 个答案) 关闭 3 年前。 Google 已于 2018 年 4
我遇到了 GCM 推送通知无法正确到达 Android 设备的问题。经过几天的研究,我发现 Android 设备使用心跳来保持与 GCM 服务的连接。遗憾的是,心跳似乎太高了,因此 Android 设
阅读堆栈溢出 2 天后我做了什么: 问题关键字:“Apple-Mach-O 链接器错误”、“libGcmLib.a(GCMRmqManager.o) ", sqlite3", "GCMRmq2Pers
我已经从 GCM 订阅了主题,当我通过 Android 设置删除所有应用程序数据时,GCM token 是相同的,关于主题的 GCM 通知仍然可用,所以我收到了我不想收到的通知。 我的问题是: 如何从
由于 gcm 已弃用,我们希望迁移我们的代码。正如在谷歌的迁移指南中提到的那样,对于我们的服务器应用程序,应该只需要将端点从 gcm 更改为 fcm。应用迁移已成功完成。 我们现在使用的是 com.g
这只发生在我的 Kyocera Rise 上。我有一个依赖 GCM 在手机之间进行通信的应用程序。我的 Nexus 4 和我的 HTC One X 之间的通信工作正常,每当我发送推送通知时,两部手机都
我遇到了与 this 相同的问题.我会尝试提供更多信息。 我正在使用 Play Framework,用 Java 编写。我写了一个叫做 PushNotificationQueue 的插件。 PushN
我需要在我的应用程序中接收来自不同发件人的推送通知。会成功吗? 最佳答案 你的问题的答案是是! 根据 GCM 的官方文档,您的应用可以接收来自多个发件人的消息(限制为 100 个不同的发件人),并且您
我有一个使用 GCM 推送通知的应用程序。它工作正常,我的设备注册并接收推送消息。 如果我从我的设备上卸载该应用程序,我将不再像您期望的那样收到消息。在我卸载应用程序后,您在服务器上发送消息的文本框仍
我正在处理另一个开发人员的现有项目,我需要获取 PubNub 设置的 GCM 服务器 key ,因为它被意外删除了。 有什么方法可以从 Google 设置中检索它?我在凭据和项目设置中找不到它。 我暂
嘿,我在调用 `subscribeToTopicP 类时遇到了一些 Gcm Intent 服务的问题,总是出现空指针异常。 这是我的代码: GcmIntentService.java private
我是一名优秀的程序员,十分优秀!