1

我想通过 PHP 将消息从我的服务器发送到电话。这是我的代码:

    $apiKey = "AIxxxxxxxxxxxxxxxxxxxx";

    $registrationIDs = array( $c2dmId );

    $url = "https://android.googleapis.com/gcm/send";

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

    $fields = array(
                    'collapse_key'      => $collapseKey,
                    'data'              => array( 
                        "type"      => $msgType,
                        "extra"     => $msgExtra,
                        "uuid"      => $uuid,
                        "user_id"   => $userId),
                    'registration_ids'  => $registrationIDs,
                    );

    print (json_encode($fields));
    echo "<br/>";

    $ch = curl_init();

    curl_setopt( $ch, CURLOPT_URL, $url );

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

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

    $result = curl_exec($ch);
    $resultInfo = curl_getinfo($ch);

    echo "resultinfo: $resultInfo <br>";
    foreach ($resultInfo as $key => $value) {
        echo "$key => $value <br>";
    }

    curl_close($ch);
    die ("Result: $result");

$c2dmId 只是我从手机发送到服务器的registrationId。结果我得到(在 $result 变量中):

<HTML>
<HEAD>
<TITLE>Not Found</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Not Found</H1>
<H2>Error 404</H2>
</BODY>
</HTML>

我不知道为什么。任何人都可以帮忙吗?文档没有说任何关于 404 代码的内容,所以我真的不知道发生了什么。

4

3 回答 3

5

哦,我完全忘记了这个问题,对不起。我已经找出问题所在了。早些时候,我使用我之前发布的代码通过 C2DM 发送消息。我只做了一些改进以将其调整为 GCM。在某些情况下,变量之一 ($msgExtra) 可能等于 null。这是预期的行为,并且与 C2DM 一起工作得很好。不幸的是,当您尝试通过 GCM 在 JSON 中传递 null 时,您会收到 404 错误,尽管 GCM 文档对此只字未提……因此,只要您不尝试发送 null,我发布的代码就很好。我的问题的解决方案是用“”之类的东西替换空值。再一次 - 对不起,我刚刚发布它,我完全忘记了这个问题。

于 2012-07-28T15:27:16.677 回答
0

从 Google API 控制台生成浏览器 API 密钥,并在“授权”标头中使用它而不是服务器密钥。一旦你这样做,这个错误就会消失。

这是由 GCM 文档中的一个严重错误引起的,该错误指出您应该在 Authorization 标头中使用服务器密钥(如此所写)。

于 2012-07-12T13:03:55.743 回答
0

可能已经为您解决了。但这是我在设备上测试的代码的工作版本。

<?php

$apiKey = "AI.....";

$registrationIDs = array( "You registration key"  );

$url = "https://android.googleapis.com/gcm/send";

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

$msgType = "hello";
$msgExtra = "rock";
$uuid = '1234';
$userId = '5678';

/* data you need to define message you want to send in APP.For ex: here myssg in what i am fetching at client side, so in notification it will show hello. You can change accordingly. */ 
$fields = array(
                'collapse_key'      => $collapseKey,
                'data'              => array( 
                    "mymsg"      => $msgType,
                    "extra"     => $msgExtra,
                    "uuid"      => $uuid,
                    "user_id"   => $userId),
                'registration_ids'  => $registrationIDs,
                );

print (json_encode($fields));
echo "<br/>";

$ch = curl_init();

curl_setopt( $ch, CURLOPT_URL, $url );

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

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

$result = curl_exec($ch);
$resultInfo = curl_getinfo($ch);

echo "resultinfo: $resultInfo <br>";
foreach ($resultInfo as $key => $value) {
    echo "$key => $value <br>";
}

curl_close($ch);
die ("Result: $result");
?>

这不会给你 404 错误。希望这会帮助你或一些在 PHP 中寻找服务器端实现的人。

于 2012-07-18T07:49:08.217 回答