Google Cloud Message(GCM)发送的android是Error inValid Register

时间:2014-06-25 18:10:55

标签: php android curl

我正在使用Google云消息(GCM)构建应用程序,请按照文章androidexample create app to push notify

进行操作

但是当我尝试通过CURL将链接https://android.googleapis.com/gcm/send和代码中的某些字段发送到Google服务器时,我有错误

 function send_push_notification($registatoin_ids, $message) {

    echo implode($registatoin_ids);
    echo implode($message);
    // Set POST variables
    $url = 'https://android.googleapis.com/gcm/send';

    $fields = array(
        'registration_ids' => $registatoin_ids,
        'data' => $message,
    );

    $headers = array(
        'Authorization: key=' . GOOGLE_API_KEY,
        'Content-Type: application/json'
    );
    //print_r($headers);
    // Open connection
    $ch = curl_init();

    //echo $ch;
    // Set the url, number of POST vars, POST data
    curl_setopt($ch, CURLOPT_URL, $url);

    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    // Disabling SSL Certificate support temporarly
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

    // Execute post
    $result = curl_exec($ch);
    if ($result === FALSE) {
        echo ("RESULT ERROR :" + $ch);
        die('Curl failed: ' . curl_error($ch));

    }

    // Close connection
    curl_close($ch);
    echo $result;
}

尝试发送时收到错误结果  Error responve

那么,你能帮我修改或配置向服务器发送消息吗,我试着让应用程序将服务器发送到Android设备, 非常感谢。

PS:对不起我的英语,再次感谢

1 个答案:

答案 0 :(得分:0)

您使用的教程太旧了。

看这里:

 GCMRegistrar.setRegisteredOnServer(context, true);

此类已弃用

截至目前,您应该使用 Google Cloud Messaging