(Java) Shopify Basic Authentication: Get List of Products
Demonstrates how to send a simple HTTP GET request with Basic authentication to get a list of products.
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[])
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
// Use your Shopify store's Admin API key and password.
http.put_Login("admin_api_key");
http.put_Password("admin_password");
http.put_BasicAuth(true);
String jsonStr = http.quickGetStr("https://mystore.myshopify.com/admin/api/2020-07/products.json");
if (http.get_LastMethodSuccess() != true) {
System.out.println(http.lastErrorText());
return;
}
System.out.println("Response status code: " + http.get_LastStatus());
System.out.println("JSON response:");
System.out.println(jsonStr);
}
}
|