我正在与 Delphi 10 Seattle 合作。以下示例我们开发了一个 REST 客户端,它与远程服务器通信以使用 Rest API。REST 客户端工作结束,直到我们尝试为请求对象设置自定义超时。
以下片段是我们的代码:
LClient: = TRESTClient.Create (URL);
LRequest: = TRESTRequest.Create (nil);
LRequest.Client: = LClient;
LRequest.Resource: = FReqParams.Resource;
LRequest.Method: = TRESTRequestMethod.rmGET;
LRequest.Timeout: = 300000;
LRequest.Execute;
我们尝试将时间设置为与默认值不同的值,但请求总是在 30 秒后关闭连接(默认值)。
我们错过了什么吗?
有人能帮我吗?
谢谢!