最近、GCMを使用したプッシュ通知の送信について質問しました: プッシュ通知をAndroidに送信 。 FCMがあるので、サーバー側の開発とはどれほど違うのだろうかと思っています。コーディングの賢明さ、それらは同じですか?サーバーからAndroidデバイスへのプッシュ通知の送信を示すFCMコードの例はどこにありますか?
Javaコードを使用してFCMに通知を送信するには、JARライブラリをダウンロードする必要がありますか? Androidへのプッシュ通知の送信 のサンプルコードは、GCMを使用したプッシュ通知の送信を示しており、サーバー側のGCM JARファイルが必要です。
ただし、 https://www.quora.com/How-do-I-make-a-post-request-to-a-GCM-server-in-Java-to-Push-aの別の例-notification-to-the-client-app は、GCMを使用したプッシュ通知の送信を示し、HTTP接続を介して送信するだけなので、サーバー側のGCM JARファイルは必要ありません。同じコードをFCMに使用できますか?使用されるURLは「 https://Android.googleapis.com/gcm/send 」です。 FCMの同等のURLは何ですか?
前もって感謝します。
サーバー側のコーディングはどの程度違いますか?
大した違いはないので、GCMのサンプルのサーバー側コードのほとんどもチェックアウトできます。 GCMとFCMに関する主な違いは、FCMを使用する場合、FCMで新しい機能を使用できることです(これで説明したように (answer)。 FCMには Console もあり、独自のアプリサーバーなしでメッセージ/通知を送信できます。
注:独自のアプリサーバーの作成はあなた次第です。コンソールを介してメッセージ/通知を送信できることを伝えるだけです。
使用されるURLは「 https://Android.googleapis.com/gcm/send 」です。 FCMの同等のURLは何ですか?
FCMの同等のURLは https://fcm.googleapis.com/fcm/send です。詳しくはthis doc をご覧ください。
乾杯! :D
以下のコードを使用して、FCMサーバーからプッシュ通知を送信します。
public class PushNotifictionHelper {
public final static String AUTH_KEY_FCM = "Your api key";
public final static String API_URL_FCM = "https://fcm.googleapis.com/fcm/send";
public static String sendPushNotification(String deviceToken)
throws IOException {
String result = "";
URL url = new URL(API_URL_FCM);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Authorization", "key=" + AUTH_KEY_FCM);
conn.setRequestProperty("Content-Type", "application/json");
JSONObject json = new JSONObject();
json.put("to", deviceToken.trim());
JSONObject info = new JSONObject();
info.put("title", "notification title"); // Notification title
info.put("body", "message body"); // Notification
// body
json.put("notification", info);
try {
OutputStreamWriter wr = new OutputStreamWriter(
conn.getOutputStream());
wr.write(json.toString());
wr.flush();
BufferedReader br = new BufferedReader(new InputStreamReader(
(conn.getInputStream())));
String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
System.out.println(output);
}
result = CommonConstants.SUCCESS;
} catch (Exception e) {
e.printStackTrace();
result = CommonConstants.FAILURE;
}
System.out.println("GCM Notification is sent successfully");
return result;
}
トピック、単一デバイス、および複数デバイスのフルソリューション FireMessageクラスを作成します。これはデータメッセージの例です。データを通知に変更できます。
public class FireMessage {
private final String SERVER_KEY = "YOUR SERVER KEY";
private final String API_URL_FCM = "https://fcm.googleapis.com/fcm/send";
private JSONObject root;
public FireMessage(String title, String message) throws JSONException {
root = new JSONObject();
JSONObject data = new JSONObject();
data.put("title", title);
data.put("message", message);
root.put("data", data);
}
public String sendToTopic(String topic) throws Exception { //SEND TO TOPIC
System.out.println("Send to Topic");
root.put("condition", "'"+topic+"' in topics");
return sendPushNotification(true);
}
public String sendToGroup(JSONArray mobileTokens) throws Exception { // SEND TO GROUP OF PHONES - ARRAY OF TOKENS
root.put("registration_ids", mobileTokens);
return sendPushNotification(false);
}
public String sendToToken(String token) throws Exception {//SEND MESSAGE TO SINGLE MOBILE - TO TOKEN
root.put("to", token);
return sendPushNotification(false);
}
private String sendPushNotification(boolean toTopic) throws Exception {
URL url = new URL(API_URL_FCM);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/json");
conn.setRequestProperty("Accept", "application/json");
conn.setRequestProperty("Authorization", "key=" + SERVER_KEY);
System.out.println(root.toString());
try {
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(root.toString());
wr.flush();
BufferedReader br = new BufferedReader(new InputStreamReader( (conn.getInputStream())));
String output;
StringBuilder builder = new StringBuilder();
while ((output = br.readLine()) != null) {
builder.append(output);
}
System.out.println(builder);
String result = builder.toString();
JSONObject obj = new JSONObject(result);
if(toTopic){
if(obj.has("message_id")){
return "SUCCESS";
}
} else {
int success = Integer.parseInt(obj.getString("success"));
if (success > 0) {
return "SUCCESS";
}
}
return builder.toString();
} catch (Exception e) {
e.printStackTrace();
return e.getMessage();
}
}
}
そして、このような場所に電話してください。サーバーとAndroidの両方を使用できます。
FireMessage f = new FireMessage("MY TITLE", "TEST MESSAGE");
//TO SINGLE DEVICE
/* String fireBaseToken="c2N_8u1leLY:APA91bFBNFYDARLWC74QmCwziX-YQ68dKLNRyVjE6_sg3zs-dPQRdl1QU9X6p8SkYNN4Zl7y-yxBX5uU0KEKJlam7t7MiKkPErH39iyiHcgBvazffnm6BsKjRCsKf70DE5tS9rIp_HCk";
f.sendToToken(fireBaseToken); */
// TO MULTIPLE DEVICE
/* JSONArray tokens = new JSONArray();
tokens.put("c2N_8u1leLY:APA91bFBNFYDARLWC74QmCwziX-YQ68dKLNRyVjE6_sg3zs-dPQRdl1QU9X6p8SkYNN4Zl7y-yxBX5uU0KEKJlam7t7MiKkPErH39iyiHcgBvazffnm6BsKjRCsKf70DE5tS9rIp_HCk");
tokens.put("c2R_8u1leLY:APA91bFBNFYDARLWC74QmCwziX-YQ68dKLNRyVjE6_sg3zs-dPQRdl1QU9X6p8SkYNN4Zl7y-yxBX5uU0KEKJlam7t7MiKkPErH39iyiHcgBvazffnm6BsKjRCsKf70DE5tS9rIp_HCk");
f.sendToGroup(tokens); */
//TO TOPIC
String topic="yourTopicName";
f.sendToTopic(topic);
これはGoogleから直接届きます
アップグレードのためにサーバー側のプロトコルを変更する必要はありません。サービスプロトコルは変更されていません。ただし、新しいサーバーの機能強化はすべてFCMサーバーのドキュメントに記載されていることに注意してください。
そして、メッセージを受信してから、継ぎ目がわずかに異なるいくつかの場所だけがあります。主に何かを削除する。
また、FCMサーバーのドキュメントはここにあります https://firebase.google.com/docs/cloud-messaging/server
FCM通知サーバーのライブラリを作成しました。 GCM lib。のように使用します
FCMサーバーの場合、このコードを使用します:
GCM Server URL-"Android.googleapis.com/gcm/send"
FCM Server URL - "fcm.googleapis.com/fcm/send"
https
にURLを追加します
Sender objSender = new Sender(gAPIKey);
または
Sender objSender = new Sender(gAPIKey,"SERVER_URL");
デフォルトのFCMサーバーURL IS ASSIGNED
Message objMessage = new Message.Builder().collapseKey("From FCMServer").timeToLive(3).delayWhileIdle(false)
.notification(notification)
.addData("ShortMessage", "Sh").addData("LongMessage", "Long ")
.build();
objMulticastResult = objSender.send(objMessage,clientId, 4);
このライブラリの依存関係の必要性は、GCM lib
required(jsonsimple.jar)と同じです。
Libを FCM_Server.jar からダウンロードします
public class SendPushNotification extends AsyncTask<Void, Void, Void> {
private final String FIREBASE_URL = "https://fcm.googleapis.com/fcm/send";
private final String SERVER_KEY = "REPLACE_YOUR_SERVER_KEY";
private Context context;
private String token;
public SendPushNotification(Context context, String token) {
this.context = context;
this.token = token;
}
@Override
protected Void doInBackground(Void... voids) {
/*{
"to": "DEVICE_TOKEN",
"data": {
"type": "type",
"title": "Android",
"message": "Push Notification",
"data": {
"key": "Extra data"
}
}
}*/
try {
URL url = new URL(FIREBASE_URL);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("Accept", "application/json");
connection.setRequestProperty("Authorization", "key=" + SERVER_KEY);
JSONObject root = new JSONObject();
root.put("to", token);
JSONObject data = new JSONObject();
data.put("type", "type");
data.put("title", "Android");
data.put("message", "Push Notification");
JSONObject innerData = new JSONObject();
innerData.put("key", "Extra data");
data.put("data", innerData);
root.put("data", data);
Log.e("PushNotification", "Data Format: " + root.toString());
try {
OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
writer.write(root.toString());
writer.flush();
writer.close();
int responseCode = connection.getResponseCode();
Log.e("PushNotification", "Request Code: " + responseCode);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader((connection.getInputStream())));
String output;
StringBuilder builder = new StringBuilder();
while ((output = bufferedReader.readLine()) != null) {
builder.append(output);
}
bufferedReader.close();
String result = builder.toString();
Log.e("PushNotification", "Result JSON: " + result);
} catch (Exception e) {
e.printStackTrace();
Log.e("PushNotification", "Error: " + e.getMessage());
}
} catch (Exception e) {
e.printStackTrace();
Log.e("PushNotification", "Error: " + e.getMessage());
}
return null;
}
}
使用
SendPushNotification sendPushNotification = new SendPushNotification(context, "token");
sendPushNotification.execute();