Java
Java
Woo Commerce Authenticate with Query Params
See more WooCommerce Examples
Demonstrates how to authenticate with Woo Commerce over HTTPS using query params instead of HTTP Basic Authentication.Chilkat Java Downloads
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;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
// To authentication over HTTPS using query params, put the query params in the URL.
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://example.com/wp-json/wc/v3/products?consumer_key=ck_52bf39999999999999999999999999999996da4d&consumer_secret=cs_6e8bb99999999999999999999999999999997054",sbResponseBody);
if (success == false) {
System.out.println(http.lastErrorText());
return;
}
System.out.println("Response Body:");
System.out.println(sbResponseBody.getAsString());
int respStatusCode = http.get_LastStatus();
System.out.println("Response Status Code = " + respStatusCode);
if (respStatusCode >= 400) {
System.out.println("Response Header:");
System.out.println(http.lastHeader());
System.out.println("Failed.");
return;
}
}
}