Я пытаюсь создать бэкэнд моего приложения для обмена сообщениями Firebase, как получить ответ firebase в Java Netbeans после успешной отправки уведомления.
Как я могу получить ответ json от Firebase?
public class SamplePhpJava {
public static final String FCM_AUTH_KEY = "asdasdasdasdasdasdadfasdfSample";
public static final String FCM_SEND_API = "https://fcm.googleapis.com/fcm/send";
public static final String REQUEST_METHOD = "POST";
public static final String TOPIC = "sfdgsdfgsfgvadfaefdasdSAmple";
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws Exception{
// TODO code application logic here
pushFcmNotification();
JSONObject jSONObject = (JSONObject) getResponse("firebase.json");
System.out.println(jSONObject);
}
private static void pushFcmNotification() throws Exception{
URL url = new URL(FCM_SEND_API);
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestMethod(REQUEST_METHOD);
conn.setRequestProperty("Authorization", "key="+FCM_AUTH_KEY);
conn.setRequestProperty("Content-Type", "application/json");
JSONObject json = new JSONObject();
json.put("to",TOPIC.trim());
JSONObject info = new JSONObject();
info.put("title", "Notification Title");
info.put("body", "Hello Test Notification");
json.put("notification", info);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(json.toString());
wr.flush();
conn.getInputStream();
}
private static Object getResponse(String response) throws Exception{
FileReader reader = new FileReader(response);
JSONParser jSONParser = new JSONParser();
return jSONParser.parse(reader);
}