(C++) 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.
#include <CkHttp.h>
void ChilkatSample(void)
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
// Use your Shopify store's Admin API key and password.
http.put_Login("admin3_api_key");
http.put_Password("admin3_password");
http.put_BasicAuth(true);
const char *jsonStr = http.quickGetStr("https://mystore.myshopify.com/admin/api/2020-07/products.json");
if (http.get_LastMethodSuccess() != true) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << "Response status code: " << http.get_LastStatus() << "\r\n";
std::cout << "JSON response:" << "\r\n";
std::cout << jsonStr << "\r\n";
}
|