我是java编程的新手,所以请放轻松我。
我尝试使用cursor
访问twitter api,然后仅添加cursor
和fetchResults3(其他所有内容保持不变),即在twitter的页面之间导航{ {1}},应用程序继续进入无限循环。 json response
应该在其值为0时停止。我尝试使用侦听器等待光标到达的json响应,但它也失败了。
以下是听众
callback
下面是从json响应加载数据的代码(游标初始化为长游标= -1作为全局变量
public interface ServiceListeners2 {
//For getting friends : @GET("1.1/friends/list.json")
@GET("1.1/followers/list.json")
Call<FollowersResponseModel> list(@Query("user_id") long id, @Query("cursor") long cursor);
}
答案 0 :(得分:0)
当服务器响应或请求失败时,将在以后异步调用onResponse()和onFailure()的回调方法。
因此在发生之前检查光标是没有意义的。