在centos中创建一个cron作业,用授权标题命中http get url

时间:2018-02-20 18:30:40

标签: curl cron centos7

我想在centos 7中创建一个cron作业,点击http get url,其中包含一些授权标题。

我更喜欢将其创建为curl命令。 任何投入都将受到赞赏。

1 个答案:

答案 0 :(得分:0)

尝试:

* * * * * /usr/bin/curl -s -H 'Header-foobar: x' -H 'Header-base:y' http://domain.tld/path

或者基本身份验证

* * * * * /usr/bin/curl -s -u user:password http://domain.tld/path

(每分钟运行卷曲)