Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

VB.NET Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(VB.NET) REST with Query Params

See more REST Examples

Demonstrates how to add query params for a REST request.

Chilkat .NET Downloads

Chilkat .NET Assemblies

Chilkat for .NET Core

Chilkat for Mono

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

' Let's say we want to send a GET request to 
' https://example.com/search?query=hello%20world&category=books&sortBy=price&filterBy=inStock

' Notice that the query parameter values must be URL encoded.

' Let's also explain the parts of the above URL:

'     Scheme: https
'         The scheme specifies the protocol used to access the resource. 
'         In this case, it is "https," which indicates that the resource is accessed using the Hypertext Transfer Protocol Secure (HTTPS).
' 
'     Host: example.com
'         The host part of the URL identifies the domain name or IP address of the server hosting the resource. In this case, "example.com" is the host.
' 
'     Path: /search
'         The path is the specific location or resource on the server that the client wants to access. 
'         In this URL, the path is "/search," indicating that the client is requesting the "search" resource on the server.
' 
'     Query Parameters:
'         Query parameters are used to send additional data to the server as key-value pairs. 
'         They are separated from the path by a question mark ? and each parameter is separated by an ampersand &.
' 
'         The above URL has four query parameters:
'             query=hello%20world: The "query" parameter with the value "hello world". The %20 represents the URL-encoded space character in the value.
'             category=books: The "category" parameter with the value "books".
'             sortBy=price: The "sortBy" parameter with the value "price".
'             filterBy=inStock: The "filterBy" parameter with the value "inStock".

Dim rest As New Chilkat.Rest

' Connect to the REST server.

' The Host part of the URL is passed in the 1st argument.
' The Scheme part of the URL ("https") is indicated by the 2nd and 3rd arguments (port and bTls).
Dim bTls As Boolean = True
Dim port As Integer = 443
Dim bAutoReconnect As Boolean = True
Dim success As Boolean = rest.Connect("example.com",port,bTls,bAutoReconnect)

' There are 3 ways to send the above GET request.

' 1) Send the request with path and query params pre-built, where the query param values are URL encoded.
Dim responseJson As String = rest.FullRequestNoBody("GET","/search?query=hello%20world&category=books&sortBy=price&filterBy=inStock")
If (rest.LastMethodSuccess <> True) Then
    Debug.WriteLine(rest.LastErrorText)
    Exit Sub
End If


' 2) Pass only the Path part of the URL, and specify the query params separately by calling AddQueryParams beforehand.
'    Again, the query params must be already URL encoded when passed to AddQueryParams
rest.ClearAllQueryParams()
rest.AddQueryParams("query=hello%20world&category=books&sortBy=price&filterBy=inStock")
responseJson = rest.FullRequestNoBody("GET","/search")
' ...
' ...

' 3) Pass each query parameter separately by calling AddQueryParam.  In this case, the query param value should be passed without URL encoding.
'    (ClearAllQueryParams ensures any params set for previous request are cleared.)
rest.ClearAllQueryParams()
rest.AddQueryParam("query","hello world")
rest.AddQueryParam("category","books")
rest.AddQueryParam("sortBy","price")
rest.AddQueryParam("filterBy","inStock")
responseJson = rest.FullRequestNoBody("GET","/search")
' ...
' ...

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.