![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Java) curl with Path Variables and Query Param VariablesSee more CURL ExamplesThis example demonstrates using variables located in the path and query params using the {{variable_name}} syntax.Note: This example requires Chilkat v11.5.0 or greater.
import com.chilkatsoft.*; public class ChilkatExample { static { try { System.loadLibrary("chilkat"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load.\n" + e); System.exit(1); } } public static void main(String argv[]) { boolean success = false; // Variables can occur in the path and query params. // Variable names are enclosed between {{ and }} // curl -X GET https://httpbin.org/{{verb}}?id={id_value}} String targetCurl = "curl -X GET https://httpbin.org/{{verb}}?id={{id_value}}"; CkHttpCurl httpCurl = new CkHttpCurl(); // Provide values for variables. // In this example, "verb" is a path variable, and "id_value" is a query param variable. httpCurl.SetVar("verb","get"); httpCurl.SetVar("id_value","123"); // Run the curl command. success = httpCurl.DoYourThing(targetCurl); if (success == false) { System.out.println(httpCurl.lastErrorText()); return; } CkJsonObject responseJson = new CkJsonObject(); responseJson.put_EmitCompact(false); int statusCode = httpCurl.get_StatusCode(); System.out.println("response status code: " + statusCode); httpCurl.GetResponseJson(responseJson); System.out.println(responseJson.emit()); // Output: // response status code: 200 // { // "args": { // "id": "123" // }, // "headers": { // "Host": "httpbin.org", // "X-Amzn-Trace-Id": "Root=1-69e92914-5d4136d240f2f7fe1056f126" // }, // "origin": "222.222.222.222", // "url": "https://httpbin.org/get?id=123" // } } } |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.