如果第一个连接失败,如何告诉httpie重试n次?

最佳答案

我不认为httpie内置此功能,但是由于它只是一个命令行工具,因此可以在使用httpie的任何shell中使用某种重试方法。例如,在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

10-04 19:09