java - Android推送通知,fcm

标签 java firebase google-cloud-messaging firebase-cloud-messaging

我正在开发 java Rest api 服务,我需要向 Android 设备发送推送通知。我不太确定如何正确执行此操作,我的代码是

public class FcmNotif {

    public final static String AUTH_KEY_FCM = "My key";
    public final static String API_URL_FCM = "https://fcm.googleapis.com/fcm/send";

// userDeviceIdKey is the device id you will query from your database
    public void pushFCMNotification(String userDeviceIdKey, String title, String message) throws Exception {

        String authKey = AUTH_KEY_FCM;   // You FCM AUTH key
        String FMCurl = API_URL_FCM;

        URL url = new URL(FMCurl);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();

        conn.setUseCaches(false);
        conn.setDoInput(true);
        conn.setDoOutput(true);

        conn.setRequestMethod("POST");
        conn.setRequestProperty("Authorization", "key=" + authKey);
        conn.setRequestProperty("Content-Type", "application/json");

        JsonObject json = new JsonObject();
        json.addProperty("to", userDeviceIdKey.trim());
        JsonObject info = new JsonObject();
        info.addProperty("title", title); // Notification title
        info.addProperty("body", message); // Notification body
        info.addProperty("image", "https://lh6.googleusercontent.com/-sYITU_cFMVg/AAAAAAAAAAI/AAAAAAAAABM/JmQNdKRPSBg/photo.jpg");
        info.addProperty("type", "message");
        json.add("data", info);
        System.out.println(json.toString());

        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(json.toString());
        wr.flush();
        conn.getInputStream();
       // System.out.println(url.getH);
    }

    public static void main(String[] args) throws Exception {
        FcmNotif fcmN=new FcmNotif();
        fcmN.pushFCMNotification("user id ", "myFirstMessage", "hello");
        System.out.println("Done");
    }
}

AUTH_KEY_FCM 我从 https://developers.google.com/mobile/add 获取“服务器 API key ”和 userDeviceIdKey 它的 id 是我在 android studio 中运行此代码时获得的

String android_id = Settings.Secure.getString(getApplicationContext().getContentResolver(),
                Settings.Secure.ANDROID_ID);

也许我不太明白,我做错了什么? 响应错误

java.io.IOException: Server returned HTTP response code: 401 for URL: https://fcm.googleapis.com/fcm/send
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1840)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1441)
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254)
    at com.gmoika.FcmNotif.makeRequest(FcmNotif.java:88)
    at com.gmoika.FcmNotif.main(FcmNotif.java:111)

最佳答案

您可以使用 Pushraven 通过 fcm 向 Android 设备发送推送通知。

https://github.com/Raudius/Pushraven

添加 jar 并执行以下操作:

Pushraven.setKey(my_key);

Notification raven = new Notification();
raven.title("MyTitle")
  .text("Hello World!")
  .color("#ff0000")
  .to(client_key);

Pushraven.push(raven);

raven.clear();

有关更多详细文档和 jar 文件,请访问提供的链接。 该 jar 实现了发送 fcm 推送通知所需执行的所有操作。

关于java - Android推送通知,fcm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44794585/

相关文章:

android - Android 上的 Firebase 消息传递和权限

java - 我可以在静态方法中获取对调用类的引用吗?

java - 在创建 XMLGregorianCalendar 时使用 DataTypeFactory 严重影响性能

android - 无法使用 GCMRegister 获取注册 ID

javascript - 使用 angularjs 在 firebase 中存储评论

android - Android应用 'io.fabric'插件失败

android - 无法在我的国家使用 GCM

java - 具有本地文件依赖的Maven项目构建错误501

java - 迭代列表时删除列表条目

ios - Firebase Codelabs FriendlyChat 教程中的图片上传崩溃