Андроид. Полученный вызов аутентификации C2DM является нулевым исключением

Я пытаюсь использовать google c2dm для отправки push-уведомлений на устройство Android, но у меня есть небольшая проблема. Когда я пытаюсь отправить сообщение, я получаю это исключение «java.IOException Received Authentication Challenge is Null». Я не знаю, что я делаю неправильно. Я использую руководство Vogella для отправки c2dm.

public static String getToken(String email, String password)
        throws IOException {
    // Create the post data
    // Requires a field with the email and the password
    StringBuilder builder = new StringBuilder();
    builder.append("Email=").append(email);
    builder.append("&Passwd=").append(password);
    builder.append("&accountType=GOOGLE");
    builder.append("&source=MyLittleExample");
    builder.append("&service=ac2dm");

    // Setup the Http Post
    byte[] data = builder.toString().getBytes();
    URL url = new URL("https://www.google.com/accounts/ClientLogin");
    HttpURLConnection con = (HttpURLConnection) url.openConnection();
    con.setUseCaches(false);
    con.setDoOutput(true);
    con.setRequestMethod("POST");
    con.setRequestProperty("Content-Type",
            "application/x-www-form-urlencoded");
    con.setRequestProperty("Content-Length", Integer.toString(data.length));

    // Issue the HTTP POST request
    OutputStream output = con.getOutputStream();
    output.write(data);
    output.close();

    // Read the response
    BufferedReader reader = new BufferedReader(new InputStreamReader(
            con.getInputStream()));
    String line = null;
    String auth_key = null;
    while ((line = reader.readLine()) != null) {
        if (line.startsWith("Auth=")) {
            auth_key = line.substring(5);
        }
    }

    // Finally get the authentication token
    // To something useful with it
    return auth_key;
}

Токен аутентификации в порядке и возвращает код 200. Но отправка сообщения не удалась

public static int sendMessage(String auth_token, String registrationId,
        String message) throws IOException {

    StringBuilder postDataBuilder = new StringBuilder();
    postDataBuilder.append(PARAM_REGISTRATION_ID).append("=")
            .append(registrationId);
    postDataBuilder.append("&").append(PARAM_COLLAPSE_KEY).append("=")
            .append("0");
    postDataBuilder.append("&").append("data.payload").append("=")
            .append(URLEncoder.encode(message, UTF8));

    byte[] postData = postDataBuilder.toString().getBytes(UTF8);

    // Hit the dm URL.

    URL url = new URL("https://android.apis.google.com/c2dm/send");
    HttpsURLConnection
            .setDefaultHostnameVerifier(new CustomizedHostnameVerifier());
    HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
    conn.setDoOutput(true);
    conn.setUseCaches(false);
    conn.setRequestMethod("POST");
    conn.setRequestProperty("Content-Type",
            "application/x-www-form-urlencoded;charset=UTF-8");
    conn.setRequestProperty("Content-Length",
            Integer.toString(postData.length));
    conn.setRequestProperty("Authorization", "GoogleLogin auth="
            + auth_token);

    OutputStream out = conn.getOutputStream();
    out.write(postData);
    out.close();

    int responseCode = conn.getResponseCode();
    return responseCode;
}

Насколько я понимаю из других сообщений, эта ошибка означает код 401, но я не могу понять причину этого, токен авторизации в порядке.


person Georgy Gobozov    schedule 06.02.2012    source источник
comment
Я только что попытался отправить сообщение с помощью команды curl и получил код 200, но push-сообщение не дошло до моего устройства. Я не знаю почему. После этого я снова попытался отправить push из своего кода и тоже получил код 200.   -  person Georgy Gobozov    schedule 06.02.2012


Ответы (1)


Используемый URL-адрес должен быть https://android.clients.google.com/c2dm/send, а не https://android.apis.google.com/c2dm/send. Кроме того, убедитесь, что PARAM_REGISTRATION_ID — это строка, равная registration_id, а не registrationId или что-то в этом роде.

person Raul Rene    schedule 09.05.2012