CallBackURL and CallBackPort?

I've always been confused about these two properties in regards to a VCL application. What is the intent of these? Should they be pointing to a web url and perhaps a web app running on a specific port? Should there be some sort of response when the url is called?

I'm hoping someone can provide some clarity.

Thanks.

= Steve

Hi,

The callback url and port are part of the oAuth 2 authentication process. This is the location where the service will provide the authentication token to the TMS FNC Cloud Pack component after authorization. The component needs an authentication token to be able to retrieve an access token. This is usually a localhost url which is monitored by the TMS FNC Cloud Pack component.

Example:

http://127.0.0.1:8000

Hi Bart,

Thank you for the response. So I don't need to write any code for that? The component handles it?

= Steve

This is indeed handled by the component. Just make sure identical values are assigned to the component properties and in the cloud service console.

Information about cloud service console configuration can be found here:

Hi Bart,

Ok, I see. That's great. Thank you.

= Steve