-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add oauth2 examples for repo #21
Conversation
Signed-off-by: xiaolong.ran <[email protected]>
@jennifer88huang @Huanli-Meng Can you please review this pull request? |
sure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave my comments, PTAL.
Signed-off-by: xiaolong.ran <[email protected]>
@Huanli-Meng PTAL again thanks |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one minor comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When you @wolfstudy finish other part, feel free to ping us.
@wolfstudy Please provide more detailed examples as other projects, not only connections. |
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Signed-off-by: xiaolong.ran <[email protected]>
Currently, the oauth2 examples of Go and Java are done, and cpp client example is providing. @jiazhai @Huanli-Meng PTAL thanks |
Signed-off-by: xiaolong.ran <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leave my comments, PTAL.
Based on my understanding, I think the code example should include these parts:
1: authenticate the client use the Oauth ot token (./bin/snctl auth export-service-account instance-name -n namespace-name
)(./bin/snctl auth get-token instance-name -n namespace-name
).
2: set the token or authentication options based on the obtained Json file or token.
3: create a client.
4: create a client producer to send messages.
5: create a client consumer to receive messages.
In addition to Pulsar clients, such as Java, go, cpp, you need to provide more example for python, node.js, websocket, and C#. and also pulsar CLI tools, such as pulsar-admin, pulsar-perf, pulsar-client, pulsarctl.
cloud/README.md
Outdated
- Go | ||
- CPP | ||
|
||
For clients in other languages, you can connect via Token, reference to [here](https://pulsar.apache.org/docs/en/security-tls-transport/#client-configuration). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as i learned, this is not about TLS transport. it should use the token generated by snctl auth get-token
. please help confirm with guangning.
Signed-off-by: xiaolong.ran <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make the names aligned:
Publish/Receive
SampleConsumer/SampleProducer
Consumer/Producer
Signed-off-by: xiaolong.ran <[email protected]>
@jiazhai @Huanli-Meng comments have been fixed, PTAL done |
@Huanli-Meng Yes, we can add other languages client in the next pull request. This pr will mainly track go, CPP and Java client. Will track the task in #22 |
Cool @Huanli-Meng This logic is correct, in [How to get OAuth2 options], we introduced how to get the specified options. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: xiaolong.ran [email protected]
Add oauth2 examples for repo