Ich habe es schon Danke.. UTF8String!
Hatte vorher mit WideString versucht brachte aber auch nichts.
Delphi-Quellcode:
function TTheMDB.BuildSearchMovieQuery(MovieTitle:
string; UseQueryMode: BOOL): UTF8String;
begin
Result := '
';
if not UseQueryMode
then
Result := '
https://api.themoviedb.org/3/search/movie?api_key='
else
Result := '
https://api.themoviedb.org/3/search/tv?api_key=';
Result := Result + GetApiKey;
Result := Result + '
&language=';
Result := Result + UseThisLanguage;
Result := Result + '
&query=';
Result := Result + MovieTitle;
end;
var
Url: UTF8String;