1
Github API允許我們通過不同的參數搜索用戶,其中一個參數是location
。運行下面的查詢將給出所有生活在巴基斯坦的用戶:如何在Github API的搜索查詢中使用'OR'?
curl https://api.github.com/search/users?q=location:pakistan
現在,我想獲得的所有用戶,要麼生活在巴基斯坦和印度,但似乎Github上沒有定義的方式因爲在印度有巴基斯坦&。
我曾嘗試以下查詢,但這些都沒有工作:
curl https://api.github.com/search/users?q=location:pakistan&location:india
curl https://api.github.com/search/users?q=location:(pakistan|india)
+1告訴我,我的第一次嘗試是接近。 +1告訴我爲什麼我的嘗試不工作。 +10(有意10_)用於回答真實情況。 –