我正在使用Adobe phonegap插件进行推送通知和开发Android应用程序。
http://www.adobe.com/devnet/phonegap/articles/android-push-notifications-with-phonegap.html
发送推送通知的服务器是PHP
<?php
// Replace with real BROWSER API key from Google APIs
$apiKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// Replace with real client registration IDs
$registrationIDs = array( "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
// Message to be sent
$message = "there is an update, waiting for you to install...";
// Set POST variables
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $registrationIDs,
'data' => array( "message" => $message ),
);
$headers = array(
'Authorization: key=' . $apiKey,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_POST, true );
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );
// Execute post
$result = curl_exec($ch);
// Close connection
curl_close($ch);
echo $result;
编译完android代码后,我正在使用regid注册成功。
发送通知后,响应成功
{
multicast_id: 5022434288122138000,
success: 1,
failure: 0,
canonical_ids: 0,
results: [
{
message_id: "0:1361774232591520%8eab850df9fd7ecd"
}
]
}
但我仍然无法通过手机收到通知。
我不确定我做错了什么。
编辑:
抱歉,我收到了推送通知消息,但没有显示它。
答案 0 :(得分:0)
现在按预期为我工作!!
状态栏通知
由于插件只是收到消息 - 无论您的应用程序是否正在运行 - 但是从那里开始没有对它做任何事情,您可以选择使用它做什么。一个常见的要求是在本机状态栏中显示消息。在iOS上,流程不同,会自动显示通知。但是在Android上你必须明确地为它编码。
一种选择是使用Cordova StatusBarNotification插件和此插件。如果您想要更快的解决方案,只需将本机Java代码添加到GCMIntentService.java onMessage()函数中,如下面的代码所示:
String message = extras.getString("message");
String title = extras.getString("title");
Notification notif = new Notification(android.R.drawable.btn_star_big_on, message, System.currentTimeMillis() );
notif.flags = Notification.FLAG_AUTO_CANCEL;
notif.defaults |= Notification.DEFAULT_SOUND;
notif.defaults |= Notification.DEFAULT_VIBRATE;
Intent notificationIntent = new Intent(context, TestSampleApp.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notif.setLatestEventInfo(context, title, message, contentIntent);
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)
context.getSystemService(ns);
mNotificationManager.notify(1, notif);
此外,在文件顶部添加以下导入以支持上述代码:
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
请务必将YourActivityClassName.class替换为扩展DroidGap的存根类的名称。例如,在示例项目中,它被称为MainActivity。