You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

CDWS uses credential-based authentication and authorization. Credentials are set using custom HTTP headers:

keyvalue
x-useruser name provided by IFI CLAIMS
x-passwordpassword provided by IFI CLAIMS

Example:

# using command-line utility wget
wget --header 'x-user: USER' --header 'x-password: PASSWORD' http://...
 
# using command-line utility curl
curl -H 'x-user: USER' -H 'x-password: PASSWORD' http://...
  • No labels