0

PHP ランタイムを使用して appengine で gcm を使用しようとしています。以下は、URLFetch サービスを使用するコードです。

$context = array("https"=>
             array( "method" => "post",
                "content" => json_encode($fields),
                "header" => "Content-Type: application/json\r\n" .
                            "Authorization: key=" . GOOGLE_API_KEY . "\r\n"
            )
        );
    $context = stream_context_create($context);
    $result = file_get_contents($url, false, $context);

以下は、PHP Curl を使用する元のコードです。

    $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);

Curl を使用する PHP コードは正常に動作しますが、appengine の urlfetch サービスを使用するコードは動作しません。誰かが私がどこで間違っているのか教えてもらえますか?

4

1 に答える 1

2

これはテスト済みのコードです。

    パブリック関数 sendAndroidPushNotification($registration_ids, $message)
    {
         // デバイストークンを配列に追加
         $registrationIds = array($registration_ids);
         $msg = 配列(
            'メッセージ' => $メッセージ,
            'タイトル' => '通知センター',
            'tickerText' => $メッセージ、
            '振動' => 1,
            'サウンド' => 1,
        );

        $fields = 配列(
            'registration_ids' => $registrationIds,
            'データ' => $msg
        );
        $fields = json_encode($fields);
        $arrContextOptions=配列(
            "http" => 配列(
                "メソッド" => "POST",
                「ヘッダー」=>
                    「承認: キー = 」。"\r\n" .
                    「コンテンツ タイプ: アプリケーション/json」。"\r\n",
                "コンテンツ" => $フィールド、
            )、
            "ssl"=>配列(
                "allow_self_signed"=>true,
                "verify_peer"=>false,
            )、
        );
        $arrContextOptions = stream_context_create($arrContextOptions);
        $result = file_get_contents('https://android.googleapis.com/gcm/send', false, $arrContextOptions);

        $結果を返します。
    }
于 2014-12-20T10:32:33.597 に答える