发送POST请求到HTTPS URL在Linux中的用户名和密码

问题描述 投票:1回答:2

我需要发送POST请求到HTTPS(证书)的URL在Linux中,有URL的用户名和密码。

可能吗?如果它是怎么了?如果不是这样,我该怎么办呢?

谢谢。

linux curl https http-post
2个回答
0
投票

卷曲数据:

curl --data "username=value1&password=value2" https://dzaczek.com/resource.php

你需要检查webside变量的名称和地址后


0
投票

在Linux中,卷曲工具,我用下一个:

curl --data "delay=0sec" https://username:password@localhost:8080/job/Test/build

就像你看到的,你只需要插入地址username:password@,这里是一个PARAM其命名为delay与价值0sec

它帮助我POST请求到服务器詹金斯。

© www.soinside.com 2019 - 2024. All rights reserved.