0

プッシュ通知とAndroidアプリケーションの開発にAdobephonegapプラグインを使用しています。

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;

アンドロイドコードをコンパイルした後、私はregidで登録に成功しています。

通知を送信した後、応答は成功です。

{
multicast_id: 5022434288122138000,
success: 1,
failure: 0,
canonical_ids: 0,
results: [
    {
    message_id: "0:1361774232591520%8eab850df9fd7ecd"
    }
]
}

それでも電話で通知を受け取ることができません。

何が悪いのかわからない。

編集:

申し訳ありませんが、プッシュ通知メッセージが表示されていましたが、表示されませんでした。

4

1 に答える 1

0

ここで答えを見つけました:
http://www.adobe.com/devnet/phonegap/articles/android-push-notifications-with-phonegap.html#articlecontentAdobe_numberedheader_4

期待どおりに動作します!!

ステータスバー通知

プラグインは、アプリが実行されているかどうかに関係なく、メッセージを受信するだけで、そこから何もしないため、それをどうするかを選択できます。一般的な要件の 1 つは、ネイティブ ステータス バーにメッセージを表示することです。iOS ではプロセスが異なり、通知が自動的に表示されます。ただし、Android では明示的にコーディングする必要があります。

1 つのオプションは、これと一緒に 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 と呼ばれます。

于 2013-02-26T15:47:38.233 に答える