We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey, like you I really enjoyed the article API Tokens: A Tedious Survey, and looked for protobuf token libraries, and found yours and https://github.com/ThatsMrTalbot/prototoken
However, I have also found:
Additionally, I found that the author of that article implemented them in the flynn.io codebase (now archived):
https://github.com/flynn/flynn/blob/c283e9f51589c2a7db6b3727dcceefc5a0f849cf/controller/authorizer/authorizer.go#L18
https://github.com/flynn/flynn/blob/c283e9f51589c2a7db6b3727dcceefc5a0f849cf/controller/api/controller.proto You can see the protobuf:
message SignedData { bytes data = 1; bytes signature = 2; } message AccessToken { string client_id = 1; string user_id = 2; string user_email = 3; google.protobuf.Timestamp issue_time = 4; google.protobuf.Timestamp expire_time = 5; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey, like you I really enjoyed the article API Tokens: A Tedious Survey, and looked for protobuf token libraries, and found yours and https://github.com/ThatsMrTalbot/prototoken
However, I have also found:
Additionally, I found that the author of that article implemented them in the flynn.io codebase (now archived):
https://github.com/flynn/flynn/blob/c283e9f51589c2a7db6b3727dcceefc5a0f849cf/controller/authorizer/authorizer.go#L18
https://github.com/flynn/flynn/blob/c283e9f51589c2a7db6b3727dcceefc5a0f849cf/controller/api/controller.proto
You can see the protobuf:
The text was updated successfully, but these errors were encountered: