Need SDK and dependencies required by your SMSNotification.java file

in siebel 'purecloud-platform-client-v2' libraries are not being supported, do we have any documentation that help integrating siebel with genesys.

If your desired environment cannot use one of the SDKs, you will make the API requests directly using whatever technologies are appropriate for your environment. You can find the Genesys Cloud API reference here: https://developer.genesys.cloud/devapps/api-explorer.

Also, note that the SDKs are open source and MIT licensed. You are free to use the code without consuming the published package.

Thanks for the info Tim,

However i tried that , I am facing issue while getting auth token
https://login.mypurecloud.com/oauth/token
below is the error
enu:1 Access to fetch at 'https://login.mypurecloud.com/oauth/token' from origin 'https://XBYABC*.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

You must configure the oauth client's redirect URIs to include the domain of your application. Otherwise, you don't get CORS headers and your browser blocks it as a security measure. See here for information: https://developer.genesys.cloud/authorization/platform-auth/cors

Is your application client-side JavaScript in a browser? Or is it a server-side node.js application? If you're running in a browser, you can't use client credentials and must implement the implicit oauth grant (or PKCE). Client Credentials can't be used in a browser because that would require exposing your client secret in plain text to every user of your application. Responses for requests made using client credentials will never have CORS headers for this reason, and therefore prevents it from ever working in a browser.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.