2016-10-04 21 views
0

我使用郵差,以測試從我Github上如何使用API​​郵差

拉動的問題清單,在命令行我可以做檢索以下

curl -i -H 'Authorization: token <mytoken>' \ 
    https://api.github.com/user/issues 

的Github上的問題的列表,我認爲它返回一個空塊:

HTTP/1.1 200 OK 
Server: GitHub.com 
Date: Tue, 04 Oct 2016 22:01:26 GMT 
Content-Type: application/json; charset=utf-8 
Content-Length: 5 
Status: 200 OK 
X-RateLimit-Limit: 5000 
X-RateLimit-Remaining: 4988 
X-RateLimit-Reset: 1475621615 
Cache-Control: private, max-age=60, s-maxage=60 
Vary: Accept, Authorization, Cookie, X-GitHub-OTP 
ETag: "db74aad51113746c20473c4cf2b08bde" 
X-OAuth-Scopes: gist, notifications, repo, user 
X-Accepted-OAuth-Scopes: 
X-GitHub-Media-Type: github.v3 
Access-Control-Expose-Headers: ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval 
Access-Control-Allow-Origin: * 
Content-Security-Policy: default-src 'none' 
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload 
X-Content-Type-Options: nosniff 
X-Frame-Options: deny 
X-XSS-Protection: 1; mode=block 
Vary: Accept-Encoding 
X-Served-By: cee4c0729c8e9147e7abcb45b9d69689 
X-GitHub-Request-Id: 520E2ADF:3E4D:3650D52:57F426B6 

[ 

] 

所以我在郵差測試它,但同時我可以做一個簡單的令牌GET請求,我得到的郵差

以下
{ 
    "message": "Not Found", 
    "documentation_url": "https://developer.github.com/v3" 
} 
+0

它與我的用戶令牌,而不是應用程序令牌我的設置 – benji1304

回答