Authentication

Oracle Integration Cloud Service on Oracle Public Cloud Machine (ICS on OPCM) uses a certificate authority (CA) certificate, issued by Verisign, to enable clients to connect securely to the server.

Note::

Ensure that you have the appropriate log-in credentials for administering ICS on OPCM, as described in Adding Users and Assigning Roles.

You access the REST resources for ICS on OPCM over HTTPS and must provide the following information for authentication:
  • An SSL certificate authority (CA) certificate file or bundle to authenticate against the Verisign CA certificate.

  • User name and password for your ICS on OPCM account.

For example, to authenticate using cURL:

  • Set the cURL environment variable, CURL_CA_BUNDLE, to the location of your local CA certificate bundle. For information about CA certificate verification using cURL, see: http://curl.haxx.se/docs/sslcerts.html.

  • Pass the user name and password for your ICS on OPCM account (for example, jstein and welcome1) using the -u cURL option.

The following example cURL command imports and adds an integration. Change example.com to the host in your Service URL as described in Send Requests.
curl -u jstein:welcome1
 -H "Accept: application/json"
 -X POST
 -F "file=@TestProject.iar;type=application/octet-stream"
 https://example.com/icsapis/v1/integrations/import