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

com.notronix.etsy.api.authentication.AuthResource Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
package com.notronix.etsy.api.authentication;

import com.notronix.etsy.api.EtsyException;
import com.notronix.etsy.api.authentication.model.EtsyScope;
import com.notronix.etsy.api.authentication.model.TokenResponse;

import java.util.List;

public interface AuthResource
{
    Long ping() throws EtsyException;

    TokenResponse exchangeToken(String legacyToken) throws EtsyException;

    TokenResponse refreshToken(String refreshToken) throws EtsyException;

    List getTokenScopes(String token) throws EtsyException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy