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

com.github.scribejava.core.revoke.OAuth2RevokeTokenResponseConverter Maven / Gradle / Ivy

There is a newer version: 3.0.61
Show newest version
package com.github.scribejava.core.revoke;

import com.github.scribejava.core.extractors.OAuth2AccessTokenJsonExtractor;
import com.github.scribejava.core.model.Response;
import java.io.IOException;

public class OAuth2RevokeTokenResponseConverter {

    public Void convert(Response response) throws IOException {
        if (response.getCode() != 200) {
            OAuth2AccessTokenJsonExtractor.instance().generateError(response.getBody());
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy