i am trying to get data from a link using chilkat http library using following method/function:
sHTML = oHTTP.QuickGetStr(URL);
it's works find with all type of url except if the url has special char in it's path
example:
Note: it has ; (semicolon) after the base url and before the parameters
https://securedomain.com/3.0/api/sports/league/matches/MatchId/topplayerstats.json;type=fantasy_points;type=tackles;type=runs;type=run_metres;type=post_contact_metres?limit=3&userkey=APIKey
chilkat response "404" error for this kind of url
i have also tried to replace the semicolon (;) with %3B but that didn't work either
if i try the same link on browser or even try with curl it just works fine :)
any one knows how handle that kind of url with chilkat?
best regards