Firebase设备使用Retrofit进行设备消息传递,如何获取消息ID?

时间:2017-02-25 10:43:13

标签: android firebase retrofit2

我使用Retrofit将设备发送到没有php脚本和curl命令的设备消息,一切正常。我需要保存已发送的消息ID。成功发送已发送消息的消息ID后如何获取。我的代码。 发送活动

public void onClick(View view) {

HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
logging.setLevel(HttpLoggingInterceptor.Level.BODY);

OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
httpClient.addInterceptor(new Interceptor() {
    @Override
    public okhttp3.Response intercept(Chain chain) throws IOException {
        Request original = chain.request();

        // Request customization: add request headers
        Request.Builder requestBuilder = original.newBuilder()
                .header("Authorization", "key=legacy server key from FB console"); // <-- this is the important line
        Request request = requestBuilder.build();
        return chain.proceed(request);
    }
});

httpClient.addInterceptor(logging);
OkHttpClient client = httpClient.build();

Retrofit retrofit = new Retrofit.Builder()
        .baseUrl("https://fcm.googleapis.com")//url of FCM message server
        .client(client)
        .addConverterFactory(GsonConverterFactory.create())//use for convert JSON file into object
        .build();

// prepare call in Retrofit 2.0
FirebaseAPI firebaseAPI = retrofit.create(FirebaseAPI.class);

//for messaging server
NotifyData notifydata = new NotifyData("Notification title","Notification body");

Call<Message> call2 = firebaseAPI.sendMessage(new Message("...... device token ....", notifydata));

call2.enqueue(new Callback<Message>() {
    @Override
    public void onResponse(Call<Message> call, Response<Message> response) {

        Log.d("Response ", "onResponse");
        t1.setText("Notification sent");

    }

    @Override
    public void onFailure(Call<Message> call, Throwable t) {
        Log.d("Response ", "onFailure");
        t1.setText("Notification failure");
    }
});
}

的POJO

public class Message {
String to;
NotifyData notification;

public Message(String to, NotifyData notification) {
    this.to = to;
    this.notification = notification;
}

}

public class NotifyData {
String title;
String body;

public NotifyData(String title, String body ) {

    this.title = title;
    this.body = body;
}

}

和FirebaseAPI

public interface FirebaseAPI {

@POST("/fcm/send")
Call<Message> sendMessage(@Body Message message);

}

1 个答案:

答案 0 :(得分:0)

我扩展了我的留言POJO

public class Message {
String to;
NotifyData notification;
String message_id;

public Message(String to, NotifyData notification, String message_id) {
    this.to = to;
    this.notification = notification;
    this.message_id = message_id;
    }

public String getMessage_id() {

    return message_id;
    }

}

Firebase在发送FCM消息后在Response中获取message_id

Call<Message> call2 = firebaseAPI.sendMessage(new Message(to, notifydata, ""));
    call2.enqueue(new Callback<Message>() {
        @Override
        public void onResponse(Call<Message> call, Response<Message> response) {

            Log.d("Response ", "onResponse");
            //t1.setText("Notification sent");
            Message message = response.body();
            Log.d("message", message.getMessage_id());

        }

        @Override
        public void onFailure(Call<Message> call, Throwable t) {
            Log.d("Response ", "onFailure");
            //t1.setText("Notification failure");
        }
    });