带有 Stack Overflow API 标签的问题列表
正如你们中的一些人所知,Stack Overflow 现在有一个 API,它现在使这些类型的问题成为有效的编程问题。
我的问题:我正在尝试编写一个小脚本来连接到 Stack Overflow API,以获取某个主题(例如 oauth、Python、twitter-api 等)下的所有问题的列表。
有人可以建议如何做到这一点吗?我没有使用 API 的经验,欢迎提供代码或教程链接。我正在使用 PHP。
As some of you know, Stack Overflow now has an API, which now makes these types of questions valid programming questions.
My question: I'm trying to write a small script to connect to the Stack Overflow API to get a list of all questions under a subject (such as oauth, Python, twitter-api, and so on).
Can someone advise how to do this? I have no experience using the API and would welcome code or a link to a tutorial. I'm working with PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于未来 10 年内的人们,您可以通过调用
/questions
端点来完成此操作。下面的示例将获取带有标签 python您可以添加多个由
;
,所有指定的标签都具有 AND 约束,并且由于 Stackoverflow 只允许您为每个问题添加最多 5 个标签,超过此数量将返回 0 个结果。下面的示例将获取具有以下所有标签的所有问题: python, pycharm 和 numpy
您可以在上面的链接中使用其他过滤器参数,或者打开浏览器控制台并粘贴此代码以掌握过滤器和返回值
For the people in the next 10 years, you can do this by calling the
/questions
endpoint. The example below will get all of the questions with the tag pythonYou can add multiple tags seperated by
;
, all specified tags have AND constraint and since Stackoverflow only allows you to add up to 5 tags per question, any more than that will return 0 results.The example below will get all questions that has all of the following tags: python, pycharm and numpy
You can play around with other filter params in the link above or open the browser console and paste this code to get the hang of the filter and returned values