Mule OAuth2 using Client Credentials as grant_type

后端 未结 1 662
闹比i
闹比i 2021-01-29 07:01

My requirement is to use client_credentials grant_type of OAuth2 to obtain the access token in Mule. I want to implement a OAuth enabled custom connector. I am unable to achieve

1条回答
  •  迷失自我
    2021-01-29 07:31

    It would help if you share your connector code.

    However if you are using client-credentials flow, using the @OAuth2 annotations is probably not the way to go as this uses HTTP GET to redirect to the service provider.

    As this grant type doesn't require redirection or callbacks, typically you just pass the credentials in as basic auth or in the POST body to a token endpoint.

    You're better off using connection management features of Devkit and using a http client to call out to your token endpoint and store the token endpoint in the @Connect method:

    http://www.mulesoft.org/documentation/display/34X/Implementing+Connection+Management

    private String token;
    @Connect
        public void connect(@ConnectionKey String clientKey, @Password String clientSecret)
                throws ConnectionException
        {
            //HTTP client to call token endpoint:
            //curl -u TestClient:TestSecret https://api.mysite.com/token -d 'grant_type=client_credentials'
            this.token = "extract from response"
        }
    

    0 讨论(0)
提交回复
热议问题