Firebase 错误 400 发送 HttpPost 消息



我正在尝试将消息从Java服务器发送到特定的Android设备,但它返回我一个错误:400 Bad Request

该应用程序的密钥还可以,因为我一直在尝试使用其他错误的密钥,直到在Firebase控制台中成立

代码为:

    public static void sendMensaje(){
        LOGGER.log(Level.INFO, "zzz Empieza");
        String respuestaString = new String("OK n");
        try {
            HttpClient httpClient = new DefaultHttpClient();
            HttpPost post = new HttpPost("https://fcm.googleapis.com/fcm/send");
            post.setHeader("Content-Type", "application/json");
            post.setHeader("Authorization", "key="+" AAA...K0ynKNJN");
            String mensajeJSONEnString = buildNotificationMessage().toString();
            StringEntity stringEntity = new StringEntity(mensajeJSONEnString,"UTF-8");
            post.setEntity(stringEntity);
            HttpResponse response = httpClient.execute(post);
            int responseCode = response.getStatusLine().getStatusCode();
            if(responseCode == 200 ) {
                respuestaString = "OK!";
            } else {
                String respuestaString2 = new String();
                if (responseCode == 500) {
                    respuestaString2 ="Error interno del servidor, prueba más tarde.n";
                } else if (responseCode == 503) {
                    respuestaString2 ="Servidor no disponible temporalmente, prueba más tarde.n";
                } else if (responseCode == 401) {
                    respuestaString2 ="La API Key utilizada no es válida.n";
                }
                respuestaString = new StringBuilder(respuestaString2).append(responseCode).append(" ").append(response.getStatusLine().getReasonPhrase()).toString();
                System.out.println(respuestaString);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        System.out.println("return true");
        LOGGER.log(Level.INFO, "zzz " + "FIN");
    }
    private static JsonObject buildNotificationMessage() {
        JsonObject jNotification = new JsonObject();
        jNotification.addProperty("title", "TITLE");
        jNotification.addProperty("body", "BODY");
        JsonObject jMessage = new JsonObject();
        jMessage.add("notification", jNotification);
        jMessage.addProperty("to", "e1ltVa_...CVOKg6D5");
        JsonObject jFcm = new JsonObject();
        jFcm.add("message", jMessage);
        return jFcm;
    }

问题出在哪里?我准备 JSON 的方式?

请帮忙。

发布到https://fcm.googleapis.com/fcm/send使用旧版 HTTP 服务器协议。 请求的 JSON 不使用message作为根。 这是通过HTTP v1 API引入的。

进行以下更改:

private static JsonObject buildNotificationMessage() {
    JsonObject jNotification = new JsonObject();
    jNotification.addProperty("title", "TITLE");
    jNotification.addProperty("body", "BODY");
    JsonObject jMessage = new JsonObject();
    jMessage.add("notification", jNotification);
    jMessage.addProperty("to", "e1ltVa_...CVOKg6D5");
    //JsonObject jFcm = new JsonObject();  // <= NOT NEEDED
    //jFcm.add("message", jMessage);  // <= NOT NEEDED
    return jMessage;  // <= CHANGED
}

您需要使用 firebaseId 而不是应用 ID,重新安装您的应用,并在 FirebaseRegistrationService 中设置断点,此服务在应用生命周期中启动一次,唯一的工作就是获取 Firebase 令牌 ID。您收到错误 400,因为您的令牌不正确。

public class FirebaseCloudRegistrationService extends FirebaseInstanceIdService {
    String TAG = "FirebaseNotification";
    @Override
    public void onTokenRefresh() {
        // Get updated InstanceID token.
        String refreshedToken = FirebaseInstanceId.getInstance().getToken();
        Log.d(TAG, "Refreshed token: " + refreshedToken);
  breakpoint -->  storeRegistrationId(this, refreshedToken);
    }
}

相关内容

  • 没有找到相关文章

最新更新