私はC2DMサーバから登録IDを要求するC2DMクライアントを実装しました。アプリケーションが登録IDを取得すると、アプリケーションはデバイスIDと登録IDをサーバーデータベースに格納します。 PHPサーバを実装しましたが、メッセージを投稿しようとするとError = MissingRegistrationになります。Android C2DMに登録エラーがありませんか?
PHPサーバー・コード
$url = 'https://www.google.com/accounts/ClientLogin';
$body = '[email protected]&Passwd=password&accountType=GOOGLE&source=MyLittleExample&service=ac2dm';
$c = curl_init ($url);
curl_setopt ($c, CURLOPT_POST, true);
curl_setopt ($c, CURLOPT_POSTFIELDS, $body);
curl_setopt ($c, CURLOPT_RETURNTRANSFER, true);
$page = curl_exec ($c);
$p = explode("Auth=",$page);
curl_close ($c);
$url = 'https://android.apis.google.com/c2dm/send';
$param = // Get Registration id from my sql
$mtype = 'important';
$msg = 'Hello';
$len = strlen($param);
echo $len;
function sendMessageToPhone($authCode, $deviceRegistrationId, $msgType, $messageText) {
$headers = array('Content-length:300','Authorization: GoogleLogin auth='.$authCode);
$data = array(
'registration_id' => $deviceRegistrationId,
'collapse_key' => $msgType,
'data.message' => $messageText //TODO Add more params with just simple data instead
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://android.apis.google.com/c2dm/send");
if ($headers)
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
$data = sendMessageToPhone($p[1],$param,$mtype,$msg);
var_dump($data);
ドキュメントエラー= MissingRegistrationによるPOSTリクエストにはREGISTRATION_IDパラメータが存在しない場合に発生します。私も、登録IDをハードコーディングしてアプリケーションを実行しようとしました。どんな助けでも大歓迎です。ありがとうございました。
よく構造化され、明確な質問。私はPHPを知らず、まだ私はすべてを理解することができます。 +1に値する。しかし、まだ問題を探しています。 –
@Borisありがとうございました:) – iNan