PureBasic
PureBasic
HTTP Download to Stream
See more REST Examples
Demonstrates how to stream the response body directly to a stream, which in this case is to a file stream.Chilkat PureBasic Downloads
IncludeFile "CkRest.pb"
IncludeFile "CkStream.pb"
IncludeFile "CkUrl.pb"
Procedure ChilkatExample()
success.i = 0
; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
rest.i = CkRest::ckCreate()
If rest.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
; The URL we want to download is:
; https://github.com/chilkatsoft/OAuth2-CSharp-Desktop/archive/master.zip
url.i = CkUrl::ckCreate()
If url.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkUrl::ckParseUrl(url,"https://github.com/chilkatsoft/OAuth2-CSharp-Desktop/archive/master.zip")
; Connect to the web server
bAutoReconnect.i = 1
success = CkRest::ckConnect(rest,CkUrl::ckHost(url),CkUrl::ckPort(url),CkUrl::ckSsl(url),bAutoReconnect)
If success <> 1
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
CkUrl::ckDispose(url)
ProcedureReturn
EndIf
success = CkRest::ckSendReqNoBody(rest,"GET",CkUrl::ckPath(url))
If success <> 1
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
CkUrl::ckDispose(url)
ProcedureReturn
EndIf
; Read the response header.
responseStatusCode.i = CkRest::ckReadResponseHeader(rest)
If responseStatusCode < 0
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
CkUrl::ckDispose(url)
ProcedureReturn
EndIf
Debug "Response status code = " + Str(responseStatusCode)
; We expect a 200 response status if the file data is coming.
; Otherwise, we'll get a string response body with an error message(or no response body).
If responseStatusCode = 200
bodyStream.i = CkStream::ckCreate()
If bodyStream.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
; The stream's sink will be a file.
CkStream::setCkSinkFile(bodyStream, "qa_output/OAuth2-CSharp-Desktop/archive/master.zip")
; Read the response body to the stream. Given that we've
; set the stream's sink to a file, it will stream directly
; to the file.
success = CkRest::ckReadRespBodyStream(rest,bodyStream,1)
If success <> 1
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
CkUrl::ckDispose(url)
CkStream::ckDispose(bodyStream)
ProcedureReturn
EndIf
Debug "Successfully downloaded the file."
Else
errResponse.s = CkRest::ckReadRespBodyString(rest)
If CkRest::ckLastMethodSuccess(rest) <> 1
Debug CkRest::ckLastErrorText(rest)
Else
Debug errResponse
EndIf
EndIf
CkRest::ckDispose(rest)
CkUrl::ckDispose(url)
CkStream::ckDispose(bodyStream)
ProcedureReturn
EndProcedure