0

質問があります。動作している PHP firebase 通知スクリプトがありますが、まだ XAMPP 経由でローカルに通知を送信しています。RoR サーバーに通知を送信させたい場合は、PHP スクリプト全体を Ruby スクリプトに再コーディングする必要がありますか? ? または、RoR サーバーから自分の php スクリプトを直接呼び出すことはできますか?

以下は、私の作業中のphpスクリプトです。

function send_notification($tokens, $message)
{
$url = "https://fcm.googleapis.com/fcm/send";
$fields = array(
    'registration_ids' => $tokens,
    'data' => array("message"=> $message) ,
);

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

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,0);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($ch,CURLOPT_POSTFIELDS,json_encode($fields));

$result = curl_exec($ch);
if ($result === FALSE)
{
die('Curl Failed:' . curl_error($ch));
}
curl_close($ch);

return $result;
}

$conn = mysqli_connect("localhost","root","","demoflying");    

$sql = "Select Token From Users";

$result = mysqli_query($conn,$sql);
$tokens = array();

if(mysqli_num_rows($result)>0)
{
    while ($row = mysqli_fetch_assoc($result))
    {
        $tokens[] = $row["Token"];
    }
}

mysqli_close($conn);

$fromCountry = "UK";
$toCountry= "US";

$message = array(
    "FromCountry" => $fromCountry,
    "ToCountry" => $toCountry,
); 
$message_status = send_notification($tokens,$message);
echo $message_status;
?>
4

1 に答える 1

0

php #{RAILS_ROOT}/public/php_script.phpコントローラーでこれを記述してphpスクリプトを実行することが可能です

于 2016-07-12T06:33:15.137 に答える