Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
How can I authenticate in the Element Manager Public API?
Environment:
Oracle B2C Service, all supported versions
Issue:
I am unable to authenticate in the Element Manager API
Resolution:
All Element Manager APIs are now exposed as public REST endpoints so that users can invoke them in a sequence to achieve the export/import functionality. To invoke EM public REST endpoints, a user should first generate a public API token using an authentication endpoint provided by Element Manager:
POST /api/elementmanager/authentication/authToken
The authToken endpoint requires an interface URL and a bearer token as request headers:
Authorization: Bearer <<jwtToken>>
interfaceUrl: <<interfaceUrl>> (eg. http://<my-site>.custhelp.com/cgi-bin/<interface_name>.cfg)
Configuring CX Site to support JWT based authentication
1. Navigate to Configurations > Single Sign-On Configurations.
Note: To access Single Sign-On Configurations, the config SSO_ENABLE_EXTERNAL_IDP should be enabled. If your organization has already purchased this license, please log into the Configuration Assistant to enable the feature by following the steps provided in the Configuration Assistant documentation below that is found in our knowledgebase answer Oracle B2C Service Configuration Assistant on Oracle Cloud Portal
Single Sign-On Configuration (oracle.com)
SSO_ENABLE_EXTERNAL_IDP: Enables the use of an external application as the Identity Provider for the site. Default value is false, which indicates that the native Service Cloud application is the Identity Provider. If set to true, it will be possible to configure an external Identity Provider on the site. Once this IDP is configured and enabled, the site will depend on the external IDP for authentication services.
2. Click on OAUTH tab
3. Add a new Identity Provider
4. Save
Now a public API user can generate JWT Token with private certificate corresponding to the public certificate associated with the Identity Provider.
Generating JWT Token
Generation of JWT token requires an Agent account with Profile > Permissions > SSO Login (SAML 2.0) enabled. Assume there is an SSO Login enabled user-account: ssouser in the site, then the user can generate JWT Token with the following template:
Header:
{
"alg": "RS256",
"typ": "JWT"
}
Payload:
"sub": "ssouser", //SSO Login enabled account
"iss": "emPublicApi", //Identity Provider Entity ID
"exp": 1608480892, //Expiry
"jti": "s1608480892", //Unique id which identified current session
"aud": "/authToken" //Audience URL
With the above template, the required JWT token can be generated using RS256 algorithm:
base64UrlEncode(header) + "." + base64UrlEncode(payload) + "." + RSASHA256(base64UrlEncode(header) + "." + base64UrlEncode(payload), privateCertificate)
There are both offline and online utilities available for the JWT token generation process (eg. https://jwt.io/).
Adding Trusted Root Certificates
If CX is not aware of the Certificate Authority which signed the public certificate (for example in case of self-signing the certificate), then the CA certificate should be uploaded to File Manager > Additional Root Certificates.
Generating self-signed certificates
1. Create a CA root certificate:
2. Create RSA public Certificate Sign Request (CSR) and private key certificate:
3. Sign CSR with CA root certificate
Note: