0

我试过这段代码。

function sendNotification( $apiKey, $registrationIdsArray, $messageData )
{   
    $headers = array("Content-Type:" . "application/json", "Authorization:" . "key=" . $apiKey);
    $data = array(
        'data' => $messageData,
        'registration_ids' => $registrationIdsArray
    );

    $ch = curl_init();

    curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers ); 
    curl_setopt( $ch, CURLOPT_URL, "https://android.googleapis.com/gcm/send" );
    curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, 0 );
    curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, 0 );
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
    curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode($data) );

    $response = curl_exec($ch);
    curl_close($ch);

    return $response;
}

并调用此函数:

$message      = "the test message";
$tickerText   = "ticker text message";
$contentTitle = "content title";
$contentText  = "content body";

$registrationId = 'APA91bEgsAG3vmliDnJE7jfLAOGSUv3K9p41MkNranPFV4EY0svABRax8NY5oulOHv7s3v2Ks_bQutsLLw8j4mHOr5LkrRlFfXxfs3hxxwAlxIOG7cXCB4YPhlLCDspVtImyWBL_znGgkZzEWCncV3tidHMV'; (Id is wrong here for security reasons)
$apiKey = "AIzaSyD6kZoY3Qb_1ut57IEmwdRg0JuxC42W1"; (Key is wrong here for security reasons)

$response = sendNotification( 
                $apiKey, 
                array($registrationId), 
                array('message' => $message, 'tickerText' => $tickerText, 'contentTitle' => $contentTitle, "contentText" => $contentText) );

echo $response;

现在我被困住了。我只是用我自己的设备注册 ID 和谷歌 API 密钥创建了一个 PHP 页面。

但它向我显示错误:未经授权的错误 401

当我运行这个 URL http://vbought.com/sendnotification.php

我什至在 GCM 参考中添加了我的服务器 IP 和域名

.vbought.com/

*.vbought.com

50.87.3.82

我做错了什么吗?还是我需要知道?我只是想向我唯一的设备发送一条消息。

谢谢!(提前)

4

1 回答 1

1

我找到了答案。答案是我不需要在 GCM 中定义任何东西。就像我定义了我的域名和 IP 地址一样。所以我不需要做任何事情。只需将其留空,它就会像魅力一样发挥作用......

祝你今天过得愉快 :)

于 2014-09-17T11:25:57.210 回答