PureBasic
PureBasic
Read the REST Response Header and Status Code
See more REST Examples
Demonstrates Rest.ReadResponseHeader, which reads the HTTP response status line and header fields after a staged send. The returned integer is the HTTP status code, or -1 if no response was received.
Background. The staged request model separates sending from reading: a
SendReq method transmits the request, ReadResponseHeader reads the status line and headers, and a ReadResp method reads the body. This gives fine control over large or streamed messages compared with the single-call full-request methods.Chilkat PureBasic Downloads
IncludeFile "CkRest.pb"
Procedure ChilkatExample()
success.i = 0
rest.i = CkRest::ckCreate()
If rest.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
bTls.i = 1
bAutoReconnect.i = 1
success = CkRest::ckConnect(rest,"example.com",443,bTls,bAutoReconnect)
If success = 0
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
ProcedureReturn
EndIf
success = CkRest::ckSendReqNoBody(rest,"GET","/api/items/123")
If success = 0
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
ProcedureReturn
EndIf
; Read the HTTP response status line and header fields. The returned integer is the HTTP status
; code (such as 200, 404, or 500), or -1 if no response was received.
statusCode.i = CkRest::ckReadResponseHeader(rest)
If statusCode < 0
Debug CkRest::ckLastErrorText(rest)
CkRest::ckDispose(rest)
ProcedureReturn
EndIf
Debug "Response status code: " + Str(statusCode)
CkRest::ckDispose(rest)
ProcedureReturn
EndProcedure