我只想从/questions
的Stack Exchange API中获取封闭的问题。
我已经尝试了一些过滤器,我想出了一些东西,为每个问题提供了一些这样的JSON:
{
"tags": [
"c++",
"opencl",
"intel"
],
"close_vote_count": 0,
"title": "Weird OpenCL calls side effect on C++ for loop performance",
"body": "<p>I'm working on a C++ project using OpenCL. I'm using the CPU as an OpenCL device with the <a href="http://registrationcenter.intel.com/irc_nas/5193/intel_code_builder_for_opencl_2015_ubuntu_5.0.0.43_x64.tgz" rel="nofollow">intel OpenCL runtime</a></p>[...]"
},
现在,我只想要已关闭的问题。
我该怎么做?
(另一件事:我如何从结果中排除封闭的问题?
您可以使用以下查询轻松执行此操作:
SELECT count(*)
FROM Posts
WHERE ClosedDate IS NOT NULL
但是,这并不能告诉您关闭的原因,要获得此原因,您应该查看包含与帖子相关的所有更改的详细信息的PostHistoryTable
。