dwinshs

DwinsHs for Inno Setup: How to add an apikey HTTP header of a request?

試著忘記壹切 提交于 2021-02-08 06:52:24
问题 I'm using a third party tool by the name of DwinsHs for Inno Setup. This third party tool provides me the capability for downloading files as part of the installation. I want to send an HTTPS request to remote server and I would like to pass an apikey to the header of the request but it returns error 401. This is the code: [ISPP] #define fileURL "https://myserver.xom?apikey=XXXX-XXXX-XXXX-XXXX" [Code] Source: "<path_to_my_file>"; \ DestDir: "{app}"; \ Flags: external deleteafterinstall; \

DwinsHs for Inno Setup: How to add an apikey HTTP header of a request?

こ雲淡風輕ζ 提交于 2021-02-08 06:51:15
问题 I'm using a third party tool by the name of DwinsHs for Inno Setup. This third party tool provides me the capability for downloading files as part of the installation. I want to send an HTTPS request to remote server and I would like to pass an apikey to the header of the request but it returns error 401. This is the code: [ISPP] #define fileURL "https://myserver.xom?apikey=XXXX-XXXX-XXXX-XXXX" [Code] Source: "<path_to_my_file>"; \ DestDir: "{app}"; \ Flags: external deleteafterinstall; \

DwinsHs for Inno Setup: How to add an apikey HTTP header of a request?

谁说我不能喝 提交于 2021-02-08 06:49:05
问题 I'm using a third party tool by the name of DwinsHs for Inno Setup. This third party tool provides me the capability for downloading files as part of the installation. I want to send an HTTPS request to remote server and I would like to pass an apikey to the header of the request but it returns error 401. This is the code: [ISPP] #define fileURL "https://myserver.xom?apikey=XXXX-XXXX-XXXX-XXXX" [Code] Source: "<path_to_my_file>"; \ DestDir: "{app}"; \ Flags: external deleteafterinstall; \