我正在尝试使用使用ldap身份验证的curl连接到servicenow服务器。
我的命令:
curl -ntlm -u user https://my.service-now.com/api/now/table/incident
然后我得到了:
Enter host password for user 'user':
{"error":{"message":"User Not Authenticated","detail":"Required to provide Auth information"},"status":"failure"}
如何通过curl命令获取身份验证?
答案 0 :(得分:0)
您可以尝试通过身份验证
curl -ntlm "https://my.service-now.com/api/now/table/incident" \
--user 'user':'user_password'
替换为您的用户ID和密码即可执行