簡體   English   中英

Android 通知推送 php 錯誤

[英]Android Notifications push php error

我正在嘗試向用戶發送通知推送,但無法完成,

有我在 php 中使用的代碼

    $message = new gcm(); 
    $message->sendMessageToPhone(2, $message,$valor);

    class gcm 
    { 
    function sendMessageToPhone($collapseKey, $messageText, $gcmcode)  
{           
         $apiKey = 'there is my apikey';  
         $headers = array('Authorization:key=' . $apiKey); 
         $data = array(      'registration_id' => $gcmcode,      'collapse_key' => $collapseKey,      'data.message' => $messageText);
         $ch = curl_init(); 
         curl_setopt($ch, CURLOPT_URL, "https://android.googleapis.com/gcm/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);  
         $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);  
         if (curl_errno($ch)) {     return 'fail';    }    
         if ($httpCode != 200) {     return 'status code 200';    }  
         curl_close($ch);   
         return $response;      
}

當我執行 php 時出現該錯誤

可捕獲的致命錯誤:第 25 行的 /path/gcm.php 中的類 gcm 的對象無法轉換為字符串

第 25 行 = curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

嗨,朋友,我不得不為 Symfony 2.x 上的某個包開發推送通知部分,僅使用 Class 並更改名稱空間,添加您的密鑰,希望對您有所幫助。 我很抱歉我的英語不好。

請記住,設備的 ID 必須在雲中注冊。

從控制器:

    /*
     * Google API Key
     */
    define("GOOGLE_API_KEY", "xxxxxxxxxxxxxx"); // Place your Google API Key
    $gcm = new \MessageBundle\Classes\GCM();

    $message = "Hello";
$registatoin_ids = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$gcm->send_notification($registatoin_ids, $message);

班上:

    <?php


/**
 * GCM
 *
 * @author Esteban lopez
 */
class GCM {


    // constructor
    function __construct() {

    }

    /**
     * Sending Push Notification
     */
    public function send_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=' . GOOGLE_API_KEY,
            'Content-Type: application/json'
        );
        // 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;
    }

}

您缺少 gcm 的構造函數。 將以下行添加到您的 php 類 gcm 中

function __construct() {

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM