EXPO групповое уведомление - PullRequest
0 голосов
/ 10 сентября 2018

Я использую уведомление de EXPO. Его рабочая отправка сообщения от JAVA, например:

public class post {

private final String USER_AGENT = "Mozilla/5.0";

public static void main(String[] args) throws Exception {

    post http = new post();


    System.out.println("\nTesting 2 - Send Http POST request");
    http.sendPost();

}

// HTTP POST request
    private void sendPost() throws Exception {

        String url = "https://exp.host/--/api/v2/push/send";
        URL obj = new URL(url);
        HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

        //add request header
        con.setRequestMethod("POST");
        con.setRequestProperty("User-Agent", USER_AGENT);
        con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");

        String urlParameters = "to=ExponentPushToken[xxxxx-xx]&title=Title of the Notification&body=Body of your Notification";

        // Send post request
        con.setDoOutput(true);
        DataOutputStream wr = new DataOutputStream(con.getOutputStream());
        wr.writeBytes(urlParameters);
        wr.flush();
        wr.close();

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'POST' request to URL : " + url);
        System.out.println("Post parameters : " + urlParameters);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        //print result
        System.out.println(response.toString());

    }

}

Вопрос в том, как отправить несколько уведомлений в одном. Если я отправляю уведомление, чтобы сделать «X» и «Y», я хочу, чтобы оно было в том же уведомлении, а не в отдельности.

...