Weblib.REST Handle Access Token

Hi,

In WebLib.REST.pas you have the function:

function TRESTClient.HandleAccessToken(const s: TJSObject): boolean;
var
token: string;
begin
asm
token = s.detail.message;
end;
...

I can't find where s.detail. message is defined and what else can be retrieved.

Any help greatly appreciated.

Thanks,

Ken

s is a JSON object with just detail.message
{ detail: { message: access_token}}
There is at this moment no other data passed.