如何从 stackoverflow api 中按标签获取未回答问题的数量?

How to get the number of unanswered questions by tag from stackoverflow api?

有调用return标签总题数https://api.stackexchange.com/2.2/tags/java/info?order=desc&sort=popular&site=Whosebug

但是如何通过标签获取未回答问题的数量?

对于未回答的问题,请使用 the /questions/unanswered route:

api.stackexchange.com/2.2/questions/unanswered?tagged=java&site=Whosebug&filter=total


对于 没有 答案的问题,请使用 the /questions/no-answers route:

api.stackexchange.com/2.2/questions/no-answers?tagged=java&site=Whosebug&filter=total