21 個 curl 命令練習

Julia Evans發表於2019-12-05

最近,我對人們如何學習新事物感興趣。我正在讀 Kathy Sierra 的好書《Badass: Making Users Awesome》,它探討了有關“刻意練習”的想法。這個想法是,你找到一個可以用三節 45 分鐘課程內能夠學會的小技能,並專注於學習這項小技能。因此,作為一項練習,我嘗試考慮一項能夠在三節 45 分鐘課程內學會的計算機技能。

我認為使用 curl 構造 HTTP 請求也許就是這樣的一項技能,所以這裡有一些 curl 練習作為實驗!

什麼是 curl ?

curl 是用於構造 HTTP 請求的命令列工具。我喜歡使用 curl,因為它能夠很輕鬆地測試伺服器或 API 的行為是否符合預期,但是剛開始接觸它的時候會讓你感到一些困惑!

下面是一幅解釋 curl 常用命令列引數的漫畫 (在我的 Bite Size Networking 雜誌的第 6 頁)。

熟能生巧

對於任何命令列工具,我認為熟練使用是很有幫助的,能夠做到只輸入必要的命令真是太好了。例如,最近我在測試 Gumroad API,我只需要輸入:

curl https://api.gumroad.com/v2/sales \
                         -d "access_token=<SECRET>" \
                         -X GET  -d "before=2016-09-03"

就能從命令列中得到想要的結果。

21 個 curl 練習

這些練習是用來理解如何使用 curl 構造不同種類的 HTTP 請求的,它們是故意有點重複的,基本上包含了我需要 curl 做的任何事情。

為了簡單起見,我們將對 https://httpbin.org 發起一系列 HTTP 請求,httpbin 接受 HTTP 請求,然後在響應中回顯你所發起的 HTTP 請求。

  1. 請求 https://httpbin.org
  2. 請求 https://httpbin.org/anything,它將會解析你發起的請求,並且在響應中回顯。curl 預設發起的是 GET 請求
  3. https://httpbin.org/anything 發起 GET 請求
  4. https://httpbin.org/anything 發起 GET 請求,但是這次需要新增一些查詢引數(設定 value=panda
  5. 請求 Google 的 robots.txt 檔案 (www.google.com/robots.txt)
  6. https://httpbin.org/anything 發起 GET 請求,並且設定請求頭為 User-Agent: elephant
  7. https://httpbin.org/anything 發起 DELETE 請求
  8. 請求 https://httpbin.org/anything 並獲取響應頭資訊
  9. https://httpbin.com/anything 發起請求體為 JSON {"value": "panda"} 的 POST 請求
  10. 發起與上一次相同的 POST 請求,但是這次要把請求頭中的 Content-Type 欄位設定成 application/json(因為 POST 請求需要一個與請求體相匹配的 Content-Type 請求頭欄位)。檢視響應體中的 json 欄位,對比上一次得到的響應體
  11. https://httpbin.org/anything 發起 GET 請求,並且在請求頭中設定 Accept-Encoding: gzip(將會發生什麼?為什麼會這樣?)
  12. 將一些 JSON 放在檔案中,然後向 https://httpbin.org/anything 發起請求體為該檔案的 POST 請求
  13. 設定請求頭為 Accept: image/png 並且向 https://httpbin.org/image 發起請求,將輸出儲存為 PNG 檔案,然後使用圖片瀏覽器開啟。嘗試使用不同的 Accept: 欄位去請求此 URL
  14. https://httpbin.org/anything 發起 PUT 請求
  15. 請求 https://httpbin.org/image/jpeg 並儲存為檔案,然後使用你的圖片編輯器開啟這個檔案
  16. 請求 https://www.twitter.com,你將會得到空的響應。讓 curl 顯示出響應頭資訊,並嘗試找出響應內容為空的原因
  17. https://httpbin.org/anything 發起任意的請求,同時設定一些無意義的請求頭(例如:panda: elephant
  18. 請求 https://httpbin.org/status/404https://httpbin.org/status/200,然後再次請求它們並且讓 curl 顯示響應頭資訊
  19. 請求 https://httpbin.org/anything 並且設定使用者名稱和密碼(使用 -u username:password
  20. 設定 Accept-Language: es-ES 的請求頭用以下載 Twitter 的西班牙語主頁 (https://twitter.com)
  21. 使用 curl 向 Stripe API 發起請求(請檢視 https://stripe.com/docs/development 瞭解如何使用,他們會給你一個測試用的 API key)。嘗試向 https://httpbin.org/anything 發起相同的請求

via: https://jvns.ca/blog/2019/08/27/curl-exercises/

作者:Julia Evans 選題:lujun9972 譯者:hanwckf 校對:wxy

本文由 LCTT 原創編譯,Linux中國 榮譽推出

21 個 curl 命令練習

訂閱“Linux 中國”官方小程式來檢視

相關文章