All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dft.api.shopify.AccessScopeAPI Maven / Gradle / Ivy

There is a newer version: 2024.07.13
Show newest version
package com.dft.api.shopify;

import com.dft.api.shopify.model.accessscope.AccessScopesWrapper;
import com.dft.api.shopify.model.auth.AccessCredential;
import lombok.SneakyThrows;
import java.net.URI;
import java.net.http.HttpRequest;
import static com.dft.api.shopify.constantcode.ConstantCodes.ACCESS_SCOPES;
import static com.dft.api.shopify.constantcode.ConstantCodes.HTTPS;
import static com.dft.api.shopify.constantcode.ConstantCodes.JSON;

public class AccessScopeAPI extends ShopifySdkNew {

    public AccessScopeAPI(AccessCredential accessCredential) {
        super(accessCredential);
    }

    @SneakyThrows
    public AccessScopesWrapper getAccessScopes() {
        URI uri = new URI(HTTPS + accessCredential.getStoreDomain() + ACCESS_SCOPES + JSON);

        HttpRequest request = get(uri);

        return getRequestWrapped(request, AccessScopesWrapper.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy