如何使用 FCM 向特定用户发送通知?
How to send notification to specific users with FCM?
我为 FCM 准备了接收器,可以向所有设备发送通知。
gcm-http.googleapis.com/gcm/send 加上这个link 可以发给目标用户注册了 post目标设备如下 json :
{
"notification": {
"title": "sample Title",
"text": "sample text" },
"to" : "[registration id]"
}
但是,我需要向我选择的目标用户发送通知,
通过电子邮件或姓名...等。
例如:
{
"notification": {
"title": "sample Title",
"text": "sample text" },
"to" : "[email or name or sex ...]"
}
我该怎么做?
我是否需要创建网络服务器或其他东西?
Did I need to create a web server
是的。您需要一个可以将 name/email 映射到注册 ID 的地方。这些注册 ID 必须包含在对 FCM 的请求中,例如
{
'registration_ids': ['qrgqry34562456', '245346236ef'],
'notification': {
'body': '',
'title': ''
},
'data': {
}
}
会将推送发送到 'qrgqry34562456' 和“245346236ef”。
您在调用中使用的注册 ID 是应用程序中此回调中调用 'token' 的注册 ID。
public class MyService extends FirebaseInstanceIdService {
@Override
public void onTokenRefresh() {
}
}
您可以使用此代码向其他设备发送消息。此代码中不需要服务器。
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";
}
我为 FCM 准备了接收器,可以向所有设备发送通知。
gcm-http.googleapis.com/gcm/send 加上这个link 可以发给目标用户注册了 post目标设备如下 json :
{
"notification": {
"title": "sample Title",
"text": "sample text" },
"to" : "[registration id]"
}
但是,我需要向我选择的目标用户发送通知, 通过电子邮件或姓名...等。 例如:
{
"notification": {
"title": "sample Title",
"text": "sample text" },
"to" : "[email or name or sex ...]"
}
我该怎么做? 我是否需要创建网络服务器或其他东西?
Did I need to create a web server
是的。您需要一个可以将 name/email 映射到注册 ID 的地方。这些注册 ID 必须包含在对 FCM 的请求中,例如
{
'registration_ids': ['qrgqry34562456', '245346236ef'],
'notification': {
'body': '',
'title': ''
},
'data': {
}
}
会将推送发送到 'qrgqry34562456' 和“245346236ef”。
您在调用中使用的注册 ID 是应用程序中此回调中调用 'token' 的注册 ID。
public class MyService extends FirebaseInstanceIdService {
@Override
public void onTokenRefresh() {
}
}
您可以使用此代码向其他设备发送消息。此代码中不需要服务器。
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";
}