REST.Client.TCustomRESTClient.BaseURL

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property BaseURL: string read FBaseURL write SetBaseURL;

C++

__property System::UnicodeString BaseURL = {read=FBaseURL, write=SetBaseURL};

Properties

Type Visibility Source Unit Parent
property public
REST.Client.pas
REST.Client.hpp
REST.Client TCustomRESTClient

Description

Specifies the base URL for all API calls.

All resources and parameters of your requests will be appended to this URL. You can add a trailing forward slash to the value of the BaseURL property when resources are empty, this offers support for web services that expect the trailing slash.

Important: If the BaseURL property contains https, you should download OpenSSL libraries provided by the Indy project. Pre-compiled SSL Libraries are available here: http://indy.fulgan.com/SSL/.
OpenSSL libraries are third-party software, and the use of these libraries does not imply any endorsement by Embarcadero Technologies of such libraries or any claims made about such libraries.

See Also