dmpmanagerurl
As an alternative to specifying the bearertokenurl attribute of the Executor variable, you can specify the dmpmanagerurl attribute to request the bearer token from DMP Manager, e.g.:
model DirectInitExample
uses "executor"
declarations
myexecutor: Executor
end-declarations
myexecutor.componenturl := "https://vm65j75lqh-vm65j75lqh.dms.usw2.ficoanalyticcloud.com/"
myexecutor.dmpmanagerurl := "https://console.dms.usw2.ficoanalyticcloud.com/"
myexecutor.clientid := "vm5qh0y37c"
myexecutor.secret := "wdS97u648BVoI#d3e4g2Z4mP780Y1DLdSDKm"
! myexecutor now initialized and can be used
end-model Similarly, you can set the dmpManagerUrl field of a JSON configuration document:
{
"main": {
"componentUrl": "https://vm65j75lqh-vm65j75lqh.dms.usw2.ficoanalyticcloud.com/",
"dmpManagerUrl": "https://console.dms.usw2.ficoanalyticcloud.com/",
"clientId": "vm5qh0y37c",
"secret": "wdS97u648BVoI#d3e4g2Z4mP780Y1DLdSDKm"
}
} Requesting a bearer token from DMP Manager is deprecated functionality in recent versions of DMP and this approach should not be used in new solutions.
