Android推送通知未经授权的错误401

时间:2014-01-01 11:49:34

标签: php android push-notification

我用Google创建了一个Android应用程序' OAuth 2.0(来自开发人员控制台)并具有Android应用程序的API密钥(它使用谷歌地图,顺便说一下。)

然而,我的问题是我使用推送通知,但它适用于Android应用程序(我得到注册ID),但在服务器上它根本不工作。

我正在使用PHP,问题似乎是API密钥与Android应用程序的密钥相同。

那么我应该使用什么钥匙?我该如何检索它?

代码:

<?php

function send_push_notification($registatoin_ids, $message) {


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

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

        $headers = array(
            'Authorization: key=An_Api_Key',
            'Content-Type: application/json'
        );
        //print_r($headers);
        // 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);

        // 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) {
            die('Curl failed: ' . curl_error($ch));
        }

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

1 个答案:

答案 0 :(得分:4)

请检查您的Google API中允许的IP地址。您可以限制对某些IP地址的API访问,默认情况下,在创建新API项目时会设置一个IP地址。

删除该IP地址,以便任何IP地址(包括本地计算机的服务器)都可以连接并访问API。

我已经实现了类似的代码并且出现了401错误。以上修复对我有用。希望对你有所帮助。