繁体   English   中英

Oauth 2.0 与 grant_type=client_credentials?

[英]Oauth 2.0 with grant_type=client_credentials?

我正在寻找 Java 中的 OAuth 2.0 客户端,它支持通过grant_type=client_credentials进行机器对机器通信。 有什么建议吗?

编辑:我在这里问,因为到目前为止 2 天的研究表明,有许多用于 OAuth 2.0 的库,但似乎没有一个支持所需的操作模式。

经过多次头疼,我终于发现 ScribeJava 支持所需的操作模式——尽管它有些隐藏。

这是我采用的版本:

    public static void main(String... args) throws IOException, InterruptedException, ExecutionException {
        // Replace these with your client id and secret
        final String clientId = "your client id";
        final String clientSecret = "your client secret";
        final OAuth20Service service = new ServiceBuilder(clientId)
                .apiSecret(clientSecret)
                .defaultScope("any") // replace with desired scope
                .build(new DefaultApi20() {
                    @Override
                    public String getAccessTokenEndpoint() {
                        return "http://127.0.0.1:8082/token";
                    }

                    @Override
                    protected String getAuthorizationBaseUrl() {
                        throw new UnsupportedOperationException(
                                "This API doesn't support a Base URL.");
                    }
                });
        
        System.out.println("=== " + NETWORK_NAME + "'s OAuth Workflow ===");
        System.out.println();
        final OAuth2AccessToken accessToken = service.getAccessTokenClientCredentialsGrant();

        System.out.println("Got the Access Token!");
        System.out.println(accessToken.getRawResponse());
        System.out.println();

        System.out.println("Thats it man! Go and build something awesome with ScribeJava! :)");
    }

原始示例位于https://github.com/scribejava/scribejava/blob/master/scribejava-apis/src/test/java/com/github/scribejava/apis/examples/VkontakteClientCredentialsGrantExample.Z93F725A07423FE1C889F448B33D21F

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM