我想在我的Serverside(php)中将推送通知中的图像和图标发送到我的应用程序.
我在Google上搜索过但无法获得正确的结果.
我得到FCM PHP Code.我使用这些代码发送通知,但是当我使用“图像和图标”参数图像时,通知中没有收到.
在GCM中,可以轻松地在推送通知中发送图标和图像
$fields = array(
'registration_ids' => $registrationIDs,
'data' => array(
"title" => "SamplePush Application",
"style" => "inbox"; //picture/inbox,
"message" => "I am just testing Push notification",
"notId" => "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"summaryText" => "Venha provar os nossos Gins",
"image" => "http://gintonico.com/content/uploads/2015/03/fontenova.jpg",
"picture" => "http://media5.letsbonus.com/products/285000/285006/14014409744462-0-1700x690.jpg"
) ,
如果有人可以使用FCM在通知中发送图像和图标,请帮助我.
最佳答案 简单地说,我更改了我的插件并使用
phonegap-plugin-push v2.0.x并且它工作正常.现在我可以在通知中发送大图像.