Try this. For me it produces the error message.
parms = [
"fileMark"=>"96236406",
"userMark"=>"",
"pages"=>"124",
"time"=>"1612704256175",
"enc"=>"8fe943ac652a572c9f2a5b8df1daa14a",
"code"=>"109366b792dd692fc19055fc8bc734f4&",
"cpage"=>"45"
];
s = New HTTP Request(
URL(
"https://pdfssj.sslibrary.com/download/getFile"
),
form(fields(parms)),
Method( "GET" ),
);
result = s << Send;
show(result);
show(s<<GetResponseHeaders);
show(s<<GetWarningHeaders);
show(s<<GetStatusMessage);
show(s<<headers);
//showproperties(s);
result = "<!doctype html><html lang=\!"en\!"><head><title>HTTP Status 500 – Internal Server Error</title><style type=\!"text ...
There may be credential/password/authentication issues, or something else. The server's message means the server was unhappy about the request.
Craige