Github API call: filter by committer-date
问题 I'm using the github api, trying to find all my commits on a specific day. This query, as expected, returns all my commits: https://api.github.com/search/commits?q=committer-email:foo@bar.com But this query returns that same list, including results outside the specified date range: https://api.github.com/search/commits?q=committer-email:foo@bar.com&committer-date=2017-08-13..2017-08-14 (These queries require a header to be set: Accept: application/vnd.github.cloak-preview) Why does the