我正在开发一个必须将通知发送到特定设备的应用程序,但是现在我正在寻找解决方案时出现此错误
我正在使用rest api链接https://fcm.googleapis.com/fcm/send
我已经尝试了很多,并寻求更好的解决方案。
// APi类翻新
public interface Api {
@Headers({"Content-Type:application/json",
"Authorization:key=SECRET_KEY"
})
@POST("fcm/send")
Call<List<Score>> getValues(@Body Score score);
}
// Gson类
//评分等级
//
public class Score {
public DataScore getData() {
return data;
}
public void setData(DataScore data) {
this.data = data;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
@SerializedName("data")
@Expose
private DataScore data;
@SerializedName("to")
@Expose
private String to;
}
// DataScore
class DataScore {
@SerializedName("score")
@Expose
private String score;
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
@SerializedName("time")
@Expose
private String time;
}
//主班
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FirebaseMessaging.getInstance().setAutoInitEnabled(true);
String token =FirebaseInstanceId.getInstance().getToken();
String key=token;
DataScore dataScore =new DataScore();
dataScore.setScore("aaa");
dataScore.setTime("aa");
Score score=new Score();
score.setData(dataScore);
score.setTo(token);
Retrofit retrofit =new Retrofit.Builder().baseUrl("https://fcm.googleapis.com/").addConverterFactory(GsonConverterFactory.create()).build();
Api api= retrofit.create(Api.class);
api.getValues(score).enqueue(new Callback<List<Score>>() {
@Override
public void onResponse(Call<List<Score>> call, Response<List<Score>> response) {
if (response.isSuccessful()){
Toast.makeText(MainActivity.this, response.body().toString() +"Successfull", Toast.LENGTH_SHORT).show();
}
else
{
Toast.makeText(MainActivity.this, response.message()+"FAiled",Toast.LENGTH_SHORT).show();
}
}
@Override
public void onFailure(Call<List<Score>> call, Throwable t) {
Toast.makeText(MainActivity.this, t.getMessage() +"Failure", Toast.LENGTH_SHORT).show();
}
});
}
答案 0 :(得分:0)
expected begin_array but was begin_object at line 1 column 2 path $ retrofit
-此错误意味着GSON希望从您的服务器返回一个阵列。我们之所以知道这一点,是因为您在Retrofit中的退货类型为Call<List<Score>>
。因为您需要一个列表,所以GSON尝试将您的响应解码为JSON数组。错误继续指出,在期望数组时,它遇到的第一个json令牌是begin_object
令牌。您是否使用过代理服务器或只是检查了response.body
中的原始有效负载?我的猜测是,您的响应在数组周围有一个封闭的json对象,或者仅发送回了一个Score
对象。