TWebContinuousScroll

Hi @ALL,
how I can fetch data for the TWebContinuousScroll like this?
Auth2Authenticator:=TOAuth2Authenticator.Create(nil);
Auth2Authenticator.TokenType:=TOAuth2TokenType.ttBEARER;
Auth2Authenticator.AccessToken:=aJWT;
aRESTClient:=TRESTClient.Create(aBaseUrl);
aRESTClient.Authenticator:=Auth2Authenticator;
aRESTResponse:=TRESTResponse.Create(nil);
aRESTResponse.ContentType:='application/json';
aRESTRequest:=TRESTRequest.Create(nil);
aRESTRequest.Client:=aRESTClient;
aRESTRequest.Response:=aRESTResponse;

And where I can find a documentation about the TWebRESTClient-component an an example for?

  • App / CallbackURL, Key, Secret
  • PersistTokens / Enabled, Key
  • Scopes
    (nothing I can find about here, nothing in the examples, nothing in the pdf and nothing about in the book TMS WEB CORE :(

Tks for some tips..