从服务器发送 FCM 消息时未到达设备
Posted
技术标签:
【中文标题】从服务器发送 FCM 消息时未到达设备【英文标题】:FCM messages not reaching device when sent from server 【发布时间】:2016-08-09 06:52:50 【问题描述】:我正在尝试在我的应用中实现 FCM。现在,当我从 Firebase 应用程序控制台发送消息时,我能够接收它们。但是当我尝试从我的服务器发送消息时,消息没有传递到手机。但是,从服务器发送消息后,我得到了成功状态,它显示已传递到 1 个设备。任何帮助将不胜感激。
谢谢。
清单文件:
</application>
<service
android:name=".FirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".FirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
</manifest>
Build.gradle 应用程序:
dependencies
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:design:24.0.0'
compile 'com.squareup.okhttp3:okhttp:3.2.0'
compile 'com.google.firebase:firebase-messaging:9.0.2'
apply plugin: 'com.google.gms.google-services'
Build.gradle 项目:
buildscript
repositories
jcenter()
dependencies
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0'
allprojects
repositories
jcenter()
task clean(type: Delete)
delete rootProject.buildDir
代码:
public class FirebaseMessagingService extends com.google.firebase.messaging.FirebaseMessagingService
@Override
public void onMessageReceived(RemoteMessage remoteMessage)
ShowNotification(remoteMessage.getData().get("message"));
private void ShowNotification(String message)
Intent i = new Intent(this,MainActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingintent = PendingIntent.getActivity(this,0,i,PendingIntent.FLAG_UPDATE_CURRENT);
android.support.v4.app.NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setAutoCancel(true)
.setContentTitle("FCM Test")
.setContentText(message)
.setSmallIcon(R.drawable.common_google_signin_btn_icon_dark)
.setContentIntent(pendingintent);
NotificationManagerCompat manager =(NotificationManagerCompat) getSystemService(NOTIFICATION_SERVICE);
manager.notify(0,builder.build());
public class FirebaseInstanceIDService extends FirebaseInstanceIdService
@Override
public void onTokenRefresh()
String token = FirebaseInstanceId.getInstance().getToken();
System.out.println("TOKEN " + token);
服务器端代码:
function send_notification ($tokens, $message)
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array(
'registration_ids' => $tokens,
'data' => $message
);
$headers = array(
'Authorization:key = ***********************************',
'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;
$tokens = array();
$tokens[] = "***********************************************";
$message = array("message" => " DEEPAK PUSH TEST MESSAGE");
$message_status = send_notification($tokens, $message);
echo $message_status;
【问题讨论】:
发布您的代码/logcat。您应该提供更多信息 请确保您添加了这个 google-services 文件,它包含 firebase urlproject_info": "project_number": "xxxxxxxxxx", "firebase_url": "https://projectid.firebaseio.com", "project_id": "projectid", "storage_bucket": "projectid.appspot.com"
并检查此文件中是否存在其他参数。然后试试你的代码。
您使用的是 Xampp 等本地服务器还是任何免费的网络主机?如果您可以使用 FCM 控制台发送消息(通知),那么您的 android 应用程序代码很有可能没有问题。将用于注册令牌的 php 脚本发布到您的服务器数据库以及将发布请求发送到 FCM 服务器的脚本。我有类似的问题,在更改我的 php 代码 1000 次后,我使用了我的 XAMPP 定位主机,并且相同的代码像魅力一样工作。问题出在我的免费虚拟主机服务器设置中,而不是在我的代码中。你也可能是这种情况;)
查看您用于发送消息的请求会很有用。
各位,抱歉回复晚了。我已经发布了服务器端代码。请看代码。
【参考方案1】:
我能够解决这个问题。我生成 json 的格式是错误的。我没有将有效负载放在通知标签下。发布它开始工作的更改。非常感谢你们的所有建议。
【讨论】:
您能否发布您的更新或修改的问题。它会更有帮助。以上是关于从服务器发送 FCM 消息时未到达设备的主要内容,如果未能解决你的问题,请参考以下文章
Firebase Cloud Message (FCM):尝试从 PHP 向设备发送消息(错误:InvalidRegistration)