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

com.braintreegateway.OAuthGateway Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import com.braintreegateway.util.Http;
import com.braintreegateway.util.NodeWrapper;

public class OAuthGateway {

    private Http http;
    private Configuration configuration;

    public OAuthGateway(Http http, Configuration configuration) {
        this.http = http;
        this.configuration = configuration;
    }

    public Result createTokenFromCode(OAuthCredentialsRequest request) {
        request.grantType("authorization_code");

        NodeWrapper response = http.post("/oauth/access_tokens", request);
        return new Result(response, OAuthCredentials.class);
    }

    public Result createTokenFromRefreshToken(OAuthCredentialsRequest request) {
        request.grantType("refresh_token");

        NodeWrapper response = http.post("/oauth/access_tokens", request);
        return new Result(response, OAuthCredentials.class);
    }

    public Result revokeAccessToken(String accessToken) {
        OAuthRevokeAccessTokenRequest request = new OAuthRevokeAccessTokenRequest()
            .token(accessToken);

        NodeWrapper response = http.post("/oauth/revoke_access_token", request);
        return new Result(response, OAuthResult.class);
    }

    public String connectUrl(OAuthConnectUrlRequest request) {
        request.clientId(configuration.getClientId());
        String queryString = request.toQueryString();
        return configuration.getBaseURL() + "/oauth/connect?" + queryString;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy