誰かがこの問題について尋ねるのはこれが初めてではないことを知っていますが、Retrofit2では、私の問題の正しい解決策を見つけることができません。私はオンラインのチュートリアルに従っていましたが、うまくいきました。同じコードを自分のエンドポイントに適用すると、次の例外が発生します。Java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $
これを解決する方法がわかりません。
インタフェース:
public interface MyApiService {
// Is this right place to add these headers?
@Headers({"application-id: MY-APPLICATION-ID",
"secret-key: MY-SECRET-KEY",
"application-type: REST"})
@GET("Music")
Call<List<Music>> getMusicList();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(MySettings.REST_END_POINT)
.addConverterFactory(GsonConverterFactory.create())
.build();
}
クライアントコード:
MyApiService service = MyApiService.retrofit.create(MyApiService.class);
Call<List<Music>> call = service.getMusicList();
call.enqueue(new Callback<List<Music>>() {
@Override
public void onResponse(Call<List<Music>> call, Response<List<Music>> response) {
Log.e("MainActivity", response.body().
}
@Override
public void onFailure(Call<List<Music>> call, Throwable t) {
Log.e("MainActivity", t.toString());
}
});
このペイロードで動作するこのコード:
[
{
"login": "JakeWharton",
"id": 66577,
"avatar_url": "https://avatars.githubusercontent.com/u/66577?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/JakeWharton",
"html_url": "https://github.com/JakeWharton",
"followers_url": "https://api.github.com/users/JakeWharton/followers",
"following_url": "https://api.github.com/users/JakeWharton/following{/other_user}",
"gists_url": "https://api.github.com/users/JakeWharton/gists{/Gist_id}",
"starred_url": "https://api.github.com/users/JakeWharton/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/JakeWharton/subscriptions",
"organizations_url": "https://api.github.com/users/JakeWharton/orgs",
"repos_url": "https://api.github.com/users/JakeWharton/repos",
"events_url": "https://api.github.com/users/JakeWharton/events{/privacy}",
"received_events_url": "https://api.github.com/users/JakeWharton/received_events",
"type": "User",
"site_admin": false,
"contributions": 741
},
{....
しかし、これではありません:
{
"offset": 0,
"data": [
{
"filename": "E743_1458662837071.mp3",
"created": 1458662854000,
"publicUrl": "https://api.backendless.com/dbb77803-1ab8-b994-ffd8-65470fa62b00/v1/files/music/E743_1458662837071.mp3",
"___class": "Music",
"description": "",
"likeCount": 0,
"title": "hej Susanne. ",
"ownerId": "E743756F-E114-6892-FFE9-BCC8C072E800",
"updated": null,
"objectId": "DDD8CB3D-ED66-0D6F-FFA5-B14543ABC800",
"__meta": "{\"relationRemovalIds\":{},\"selectedProperties\":[\"filename\",\"created\",\"publicUrl\",\"___class\",\"description\",\"likeCount\",\"title\",\"ownerId\",\"updated\",\"objectId\"],\"relatedObjects\":{}}"
},
{...
私の音楽クラス:
public class Music {
private String ownerId;
private String filename;
private String title;
private String description;
private String publicUrl;
private int likeCount;
// Getters & Setters
}
「このコードはこのペイロードで動作しています:...しかし、このペイロードでは動作していません:...」と言うと、それが予想され、動作するはずです。実際、エラーメッセージは、jsonをJavaオブジェクトに変換するときに、呼び出しがjson内の配列を予期していましたが、代わりにオブジェクトを取得したことを示しています。
この呼び出し:
@GET("Music")
Call<List<Music>> getMusicList();
Music
オブジェクトのリストが必要です。そのため、jsonで動作します。
[
{
"login": "JakeWharton",
...
},
...
]
Json自体はMusic
オブジェクトの配列であるため(Retrofitはjson配列間をJavaリストに変換できます)。 2番目のjsonには、配列ではなくオブジェクトのみがあります([...]
がないことに注意してください)。このためには、そのjsonにマップする別のモデルで別の呼び出しを作成する必要があります。モデルにMusicList
という名前を付けたと仮定します。呼び出しは次のようになります。
@GET("Music")
Call<MusicList> getMusicList();
(最初の呼び出しとこの呼び出しの両方を保持する場合は、メソッド名を変更する必要がある場合があることに注意してください)。
MusicList
モデルは次のようになります。
public class MusicList {
@SerializedName("data")
private List<Music> musics;
// ...
}
data
配列はMusic
オブジェクトのリストであると想定していますが、jsonが完全に異なっていることに気付きました。あなたもこれを適応する必要があるかもしれませんが、私はあなたがここで絵を得ると思います。
私はこの問題に出会います。プレイロードはオブジェクト配列ではなくオブジェクトだからです。リストを削除します。
コード例
UserAPI.Java
public interface UserAPI {
@GET("login/cellphone")
Call<LoginResponse> login(@Query("phone") String phone,
@Query("password") String password);
}
コールコード
Retrofit retrofit = new Retrofit
.Builder()
.addConverterFactory(GsonConverterFactory.create())
.baseUrl(Constant.CLOUD_MUSIC_API_BASE_URL)
.build();
UserAPI userAPI = retrofit.create(UserAPI.class);
userAPI.login(phone, password).enqueue(new Callback<LoginResponse>() {
@Override
public void onResponse(Call<LoginResponse> call, Response<LoginResponse> response) {
System.out.println("onResponse");
System.out.println(response.body().toString());
}
@Override
public void onFailure(Call<LoginResponse> call, Throwable t) {
System.out.println("onFailure");
System.out.println(t.fillInStackTrace());
}
});