![JAR search and dependency download from the Maven repository](/logo.png)
com.dft.api.shopify.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;
import com.dft.api.shopify.handler.JsonBodyHandler;
import com.dft.api.shopify.model.ShopifyShop;
import com.dft.api.shopify.model.auth.AccessCredential;
import lombok.SneakyThrows;
import java.net.URI;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import static com.dft.api.shopify.constantcode.ConstantCodes.HTTPS;
import static com.dft.api.shopify.constantcode.ConstantCodes.SHOP_END_POINT_WITH_JSON;
import static com.dft.api.shopify.constantcode.ConstantCodes.VERSION_2023_01;
public class ShopifyShopAPI extends ShopifySdkNew {
public ShopifyShopAPI(AccessCredential accessCredential) {
super(accessCredential);
}
@SneakyThrows
public ShopifyShop getShop() {
URI uri = new URI(HTTPS + accessCredential.getStoreDomain() + VERSION_2023_01 + SHOP_END_POINT_WITH_JSON);
HttpRequest request = get(uri);
return getRequestWrapped(request, ShopifyShop.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy