DataFlex
DataFlex
Remove a Query Parameter from a REST Request
See more REST Examples
Demonstrates Rest.RemoveQueryParam, which removes all query parameters whose name matches the supplied value. Name matching is case-sensitive.
Background. Removing individual parameters is useful when reusing a Rest object for requests that share most, but not all, of their query parameters.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoRest
Boolean iBTls
Boolean iBAutoReconnect
String sResponseText
String sTemp1
Boolean bTemp1
Move False To iSuccess
Get Create (RefClass(cComChilkatRest)) To hoRest
If (Not(IsComObjectCreated(hoRest))) Begin
Send CreateComObject of hoRest
End
// Connect to the REST server. The 3rd argument enables TLS (use True for HTTPS on port 443),
// and the 4th enables automatic reconnection if the connection is dropped between requests.
Move True To iBTls
Move True To iBAutoReconnect
Get ComConnect Of hoRest "example.com" 443 iBTls iBAutoReconnect To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoRest To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComAddQueryParam Of hoRest "q" "chilkat" To iSuccess
Get ComAddQueryParam Of hoRest "limit" "10" To iSuccess
// Remove a query parameter by name. Name matching is case-sensitive.
Get ComRemoveQueryParam Of hoRest "limit" To iSuccess
Get ComFullRequestNoBody Of hoRest "GET" "/api/search" To sResponseText
Get ComLastMethodSuccess Of hoRest To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoRest To sTemp1
Showln sTemp1
Procedure_Return
End
Showln sResponseText
End_Procedure