curl is a command line utility to execute commands in protocols like HTTP, FTP, etc on Linux.
Example: curl -k --user admin@abc.xyz.com:password "https://abc.xyz.com:8080/api/data"
where:
-k : disable SSL (when server doesn't enforce SSL authentication)
--user: authentication credentials of format "username:password"
Example: curl -k --user admin@abc.xyz.com:password "https://abc.xyz.com:8080/api/data"
where:
-k : disable SSL (when server doesn't enforce SSL authentication)
--user: authentication credentials of format "username:password"
No comments:
Post a Comment