真的很奇怪,没有人问过这个。
我的服务器密钥作为我的授权密钥(服务器密钥)出错MismatchSenderId
。
另一方面,如果我的设备的令牌作为我的授权密钥,但是我的设备上没有收到任何通知,那么我的push_notification()返回结果是成功的。
我确定我的令牌是正确的,因为我可以使用firebase(单一设备)控制台中的令牌发送到单个设备。
然后引导我进入另一个question,但之后我想在转到通知部分之前确认此问题
实际上我很丢失,因为用正确的服务器密钥替换了所有MismatchSenderId
错误。
<?php
require "dbconfig.php";
$sql = "SELECT token FROM tokendb";
$result = mysql_query($sql) or die($sql."<br/><br/>".mysql_error());
$tokens = array();
while($row = mysql_fetch_assoc($result))
{
echo $row['token']; //this shows the same token compared to the token show in logcat(visual studio)
$tokens[] = $row["token"];
echo '<form id="form1" name="form1" method="post" action="">'.
'<p>From<br>'.
'<input type="text" size="100" maxlength="100" name="From" id="From" /><br>'.
'<p>Title<br>'.
'<input type="text" size="100" maxlength="100" name="Title" id="Title" />'.
'<br>'.
'<input type="submit" name="Send" id="Send" value="Send" />'.
'</form>';
}
$message = array("message" => "notification test");
$message_status = sendFCMMessage($message, $tokens);
echo $message_status;
function sendFCMMessage($message,$target){
//FCM API end-point
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array();
$fields['body'] = $message;
if(is_array($target)){
$fields['registration_ids'] = $target;
}else{
$fields['to'] = $target;
}
//header with content_type api key
$headers = array(
'Content-Type:application/json',
'Authorization:key=********'
);
//CURL request to route notification to FCM connection server (provided by Google)
$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('Oops! FCM Send Error: ' . curl_error($ch));
}
curl_close($ch);
return $result;
}
?>
编辑:这个简短的PHP代码也给了我MismatchSenderId
错误
<?php
$ch = curl_init("https://fcm.googleapis.com/fcm/send");
$header=array('Content-Type: application/json',
"Authorization: key=***(serverkey from project)");
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false );
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{ \"notification\": { \"title\": \"Test desde curl\", \"text\": \"Otra prueba\" }, \"to\" : \"my device's token\"}");
curl_exec($ch);
curl_close($ch);
?>
更新
卸载并重新安装该应用已解决此问题。
答案 0 :(得分:2)
当您尝试发送到与其他发件人(项目)关联的注册令牌时,会遇到MismatchSenderId
错误。来自文档:
注册令牌与某组发件人绑定。当客户端应用程序注册FCM时,它必须指定允许哪些发件人发送消息。在向客户端应用程序发送消息时,您应该使用其中一个发件人ID。如果您切换到其他发件人,现有的注册令牌将无法正常工作。
确保您使用的服务器密钥来自与注册令牌关联的同一发件人项目。您可以通过检查google-services.json文件并查看发件人ID 是否与您用来发送邮件的Firebase项目中显示的发件人ID 相匹配来执行此操作
对于不接收消息的问题,有关您的代码发送的有效负载结构有点不清楚。尝试检查它是否是具有notification
和/或data
消息有效负载的结构合理的消息有效负载。
答案 1 :(得分:0)
让您从正确的位置获取服务器密钥 现在从firebase获取Notification的服务器密钥有点棘手。
以下是步骤:
转到控制台 - &gt;你的项目 - &gt;项目设置 - &gt;云消息(第二个标签)
从您的服务器密钥和发件人ID中获取,这对您有用。
卸载应用程序并重新安装并尝试使用。