您的
POJO课程不适合服务器 响应, 因此您的身体为 Null 。您的模型应如下所示:
public class Model { // I guess it should be List too -> List<Photos> // your response is not complete to see Photos photos; public class Photos{ int page; int pages; int perpage; int total; List<Photo> photo; //this photo class is inner class of Photos public class Photo{ String id; String owner; String secret; //rest of things } }}


