You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2021/08/27 03:12:44 UTC

[GitHub] [pulsar-client-go] beyondyinjl2 opened a new issue #602: Is there no org.apache.pulsar.client.impl.auth.AuthenticationBasic authentication method provided?

beyondyinjl2 opened a new issue #602:
URL: https://github.com/apache/pulsar-client-go/issues/602


   The code does not see the authentication method of org.apache.pulsar.client.impl.auth.AuthenticationBasic
   code
   case "":
   		return NewAuthDisabled(), nil
   
   	case "tls", "org.apache.pulsar.client.impl.auth.AuthenticationTls":
   		return NewAuthenticationTLSWithParams(m), nil
   
   	case "token", "org.apache.pulsar.client.impl.auth.AuthenticationToken":
   		return NewAuthenticationTokenWithParams(m)
   
   	case "athenz", "org.apache.pulsar.client.impl.auth.AuthenticationAthenz":
   		return NewAuthenticationAthenzWithParams(m)
   
   	case "oauth2", "org.apache.pulsar.client.impl.auth.oauth2.AuthenticationOAuth2":
   		return NewAuthenticationOAuth2WithParams(m)
   
   	default:
   		return nil, errors.New(fmt.Sprintf("invalid auth provider '%s'", name))
   	}


-- 
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: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [pulsar-client-go] massakam commented on issue #602: Is there no org.apache.pulsar.client.impl.auth.AuthenticationBasic authentication method provided?

Posted by GitBox <gi...@apache.org>.
massakam commented on issue #602:
URL: https://github.com/apache/pulsar-client-go/issues/602#issuecomment-911440153


   The basic authentication plugin is not yet implemented in Go.


-- 
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: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org