curl -k -X POST https://mylink/action -d username=admin
如何使用ansible uri模块重新编写上面的curl?我无法找到从上面的curl传递数据选项(-d或--data)的方法。
答案 0 :(得分:3)
- uri:
url: https://your.form.based.auth.example.com/index.php
method: POST
body: "name=your_username&password=your_password&enter=Sign%20in"
status_code: 302
headers:
Content-Type: "application/x-www-form-urlencoded"
register: login
body
与--data
类似。