-
Notifications
You must be signed in to change notification settings - Fork 9.1k
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
support for type string, format base64url #606
Comments
+1: OData represents binary data in base64url encoding so that clients can take payload values and use them in |
Tackling PR: #741 |
I guess the advantage is only relevant for path and query parameters, not so much for things encoded in JSON. (I'm not sure about header parameters + response headers.) (This is not an argument against this, just one consideration which might need to be mentioned.) |
See #878 |
Open API Spec supports base64 formatted string via "byte" format. However, it would be better if Open API Spec supports base64url instead of base64.
Base64Url is very similar to Base64, except that the value encoding for characters 62 and 63 is different as it is explained in https://tools.ietf.org/html/rfc4648#page-7.
This is much safer than base64. What do you guys think about this?
Some of our customers have requested support for this. Please find the corresponding issue over here.
The text was updated successfully, but these errors were encountered: