2
如何判斷httpie如果第一個連接失敗重試了N次?如何在httpie中設置重試次數?
如何判斷httpie如果第一個連接失敗重試了N次?如何在httpie中設置重試次數?
我不認爲httpie具有內置此功能,但因爲它僅僅是一個命令行工具,你可以使用某種重試法在哪個殼您使用httpie ...。例如,在bash
類似:
# Retry the 5 times command if returned exit code is not 0
for i in {1..5}; do http httpie.orgs && break || echo "Retrying..."; done