使用php向Google Cloud Messaging发送通知会给我带来未经授权的错误401

时间:2012-09-05 15:42:57

标签: php android push-notification android-c2dm google-cloud-messaging

搜索有关如何使用GCM但使用PHP而不是servlet发送通知的一些信息,我发现:GCM with PHP (Google Cloud Messaging)

我测试了这些问题的响应的工作代码,我也为浏览器应用程序创建了一个Key(带有引用者),并且我给了这个ip的权限: .mywebsite.com / (te php文件位于此网址:“http://www.mywebsite.com/~jma/cHtml5/cap/kk.php”)

但是我得到了这样的答复:未经授权的错误401

我做错了什么?

这是php文件:

<?php
    // Replace with real server API key from Google APIs        
    $apiKey = "fictional key";

    // Replace with real client registration IDs
    $registrationIDs = array( "APA91asdasdSDGGS232S13S4213abGqiNhCIXKjlxrkUYe_xTgTacNGB5n16b380XDd8i_9HpKGRHkvm8DDet4_WK3zumjDEKkTRWLgPS7kO-BrKzWz7eWFQaDD9PJ8zA6hlSqL9_zH21P8K22ktGKmo_VIF6YAdU9ejJovrKBTpgQktYkBZBf9Zw","APAasdasd32423dADFG91bHYYxYB7bFiX5ltbJt6A-4MBiNg7l4RS4Bqf3jIfYviaaUfZ810XJo2o66DY9-jdeJk_JR8FIZCyrmCv-eu_WLkGZ8KaoHgEDR_16H2QPm98uHpe1MjKVXbzYc4J89WMmcIrl5tHhWQnIQNzaI6Zp6yyFUNUQ");

    // Message to be sent
    $message = "Test Notificación PHP";

    // Set POST variables
    $url = 'https://android.googleapis.com/gcm/send';

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

    $headers = array(
        'Authorization: key=' . $apiKey,
        'Content-Type: application/json'
    );

    // Open connection
    $ch = curl_init();

    // 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 );
    //curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    //curl_setopt($ch, CURLOPT_POST, true);
    //curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( $fields ));

    // Execute post
    $result = curl_exec($ch);

    // Close connection
    curl_close($ch);
    echo $result;
    //print_r($result);
    //var_dump($result);
?>

2 个答案:

答案 0 :(得分:10)

解决!!!

您必须使用Key for server apps(使用IP锁定)而不是浏览器密钥

:)

答案 1 :(得分:0)

您需要在服务器端编码的API密钥字段中使用服务器应用程序的密钥。 创建服务器密钥时,请勿在IP地址字段中输入任何内容。