web-dev-qa-db-ja.com

FCMで特定のユーザーに通知を送信する方法は?

FCMの受信機を準備し、すべてのデバイスに通知を送信できます。

gcm-http.googleapis.com/gcm/sendこのリンクを使用すると、登録されているターゲットユーザーに送信し、以下のようなjsonのようなターゲットデバイスに投稿できます。

 {
     "notification": {
                "title": "sample Title",
                "text": "sample text"   },   
        "to" : "[registration id]"
         }

ただし、選択したターゲットユーザーにメールまたは名前などで通知を送信する必要があります。例えば:

{
     "notification": {
                "title": "sample Title",
                "text": "sample text"   },   
        "to" : "[email or name or sex ...]"
         }

どうやってやるの? Webサーバーなどを作成する必要がありますか?

22
Olcay Sönmez

Webサーバーを作成する必要がありましたか

はい。名前/電子メールを登録IDにマップできる場所が必要です。これらの登録IDは、FCMへのリクエストに含める必要があります。たとえば、

{
    'registration_ids': ['qrgqry34562456', '245346236ef'],
    'notification': {
        'body': '',
        'title': ''
    },
    'data': {

    }
}

プッシュを「qrgqry34562456」および「245346236ef」に送信します。

呼び出しで使用する登録IDは、アプリのこのコールバックで「トークン」と呼ばれるものです。

public class MyService extends FirebaseInstanceIdService {
    @Override
    public void onTokenRefresh() {
    }
}
29
Tim Castelijns

このコードを使用して他のデバイスにメッセージを送信できます。このコードにはサーバーは必要ありません。

public  String send(String to,  String body) {
            try {

                final String apiKey = "AIzaSyBsY_tfxxxxxxxxxxxxxxx";
                URL url = new URL("https://fcm.googleapis.com/fcm/send");
                HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                conn.setDoOutput(true);
                conn.setRequestMethod("POST");
                conn.setRequestProperty("Content-Type", "application/json");
                conn.setRequestProperty("Authorization", "key=" + apiKey);
                conn.setDoOutput(true);
                JSONObject message = new JSONObject();
                message.put("to", to);
                message.put("priority", "high");

                JSONObject notification = new JSONObject();
               // notification.put("title", title);
                notification.put("body", body);
                message.put("data", notification);
                OutputStream os = conn.getOutputStream();
                os.write(message.toString().getBytes());
                os.flush();
                os.close();

                int responseCode = conn.getResponseCode();
                System.out.println("\nSending 'POST' request to URL : " + url);
                System.out.println("Post parameters : " + message.toString());
                System.out.println("Response Code : " + responseCode);
                System.out.println("Response Code : " + conn.getResponseMessage());

                BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                String inputLine;
                StringBuffer response = new StringBuffer();

                while ((inputLine = in.readLine()) != null) {
                    response.append(inputLine);
                }
                in.close();

                // print result
                System.out.println(response.toString());
                return response.toString();
            } catch (Exception e) {
                e.printStackTrace();
            }
            return "error";
        }
1
Durgesh Kumar