BewareMyPower commented on code in PR #15928:
URL: https://github.com/apache/pulsar/pull/15928#discussion_r889495548
##########
pulsar-client-cpp/lib/auth/AuthOauth2.h:
##########
@@ -58,6 +58,7 @@ class ClientCredentialFlow : public Oauth2Flow {
void close();
ParamMap generateParamMap() const;
+ const std::string getWellKnownOpenIdConfigurationUrl();
Review Comment:
```suggestion
std::string getWellKnownOpenIdConfigurationUrl() const;
```
##########
pulsar-client-cpp/lib/auth/AuthOauth2.cc:
##########
@@ -143,6 +143,18 @@ ClientCredentialFlow::ClientCredentialFlow(ParamMap&
params)
audience_(params["audience"]),
scope_(params["scope"]) {}
+const std::string ClientCredentialFlow::getWellKnownOpenIdConfigurationUrl() {
Review Comment:
```suggestion
std::string ClientCredentialFlow::getWellKnownOpenIdConfigurationUrl() const
{
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]