stackoverflow api 的 Questions 方法仅返回一页问题
尝试使用 stackoverflow api 的 questions 方法,它只返回一页问题,我怎样才能获得以下页面?
我正在使用的java代码:
URL stackoverflow = new URL("http://api.stackoverflow.com/1.1/"
+ method + "?" + "answers=" + includeAnswers + "&body="
+ includeBody + "&fromdate=" + fromUnixTime + "&todate="
+ toUnixTime);
URLConnection connection = stackoverflow.openConnection();
InputStream input = connection.getInputStream();
谢谢。
Trying to work with questions method of the stackoverflow api and it returns only one page of questions , how can I get the following pages?
The java code I am using :
URL stackoverflow = new URL("http://api.stackoverflow.com/1.1/"
+ method + "?" + "answers=" + includeAnswers + "&body="
+ includeBody + "&fromdate=" + fromUnixTime + "&todate="
+ toUnixTime);
URLConnection connection = stackoverflow.openConnection();
InputStream input = connection.getInputStream();
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它在 questions 方法的文档 中说:
It says right in the documentation for the questions method :