![JAR search and dependency download from the Maven repository](/logo.png)
com.dft.api.shopify.v202307.ShopifyShopAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shopify-admin-rest Show documentation
Show all versions of shopify-admin-rest Show documentation
Shopify Admin REST API using JDK 11 and Reactive Programming
The newest version!
package com.dft.api.shopify.v202307;
import com.dft.api.shopify.ShopifySdkNew;
import com.dft.api.shopify.model.auth.AccessCredential;
import com.dft.api.shopify.v202307.model.shop.ShopifyShopWrapper;
import java.net.URI;
import java.net.http.HttpRequest;
public class ShopifyShopAPI extends ShopifySdkNew {
private static final String SHOP_ENDPOINT = "/shop";
public static final String VERSION_2023_07 = "/2023-07";
public ShopifyShopAPI(AccessCredential accessCredential) {
super(accessCredential);
}
public ShopifyShopWrapper getShop() {
URI uri = baseUrl(VERSION_2023_07, SHOP_ENDPOINT);
HttpRequest request = get(uri);
return getRequestWrapped(request, ShopifyShopWrapper.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy