-
Notifications
You must be signed in to change notification settings - Fork 16
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
Stream ID, authorization header updates #238
base: main
Are you sure you want to change the base?
Conversation
by the Receiver. | ||
> If the endpoint_url requires authorization, the receiver is required to provide | ||
this authorization header in the stream creation/updation. If present, the | ||
Transmitter MUST set with each event delivery. |
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.
Transmitter MUST set with each event delivery. | |
Transmitter MUST use the authorization header with each event delivery. |
> The HTTP Authorization header that the Transmitter MUST set with each event | ||
delivery, if the configuration is present. The value is optional and it is set | ||
by the Receiver. | ||
> If the endpoint_url requires authorization, the receiver is required to provide |
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.
> If the endpoint_url requires authorization, the receiver is required to provide | |
> If the endpoint_url requires authorization, the receiver SHOULD provide |
@@ -853,7 +854,8 @@ stream_id | |||
|
|||
> **Transmitter-Supplied**, REQUIRED. A string that uniquely identifies the stream. A | |||
Transmitter MUST generate a unique ID for each of its non-deleted streams | |||
at the time of stream creation. | |||
at the time of stream creation. Transmitters are recommended to use character set |
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.
at the time of stream creation. Transmitters are recommended to use character set | |
at the time of stream creation. Transmitters SHOULD use character set |
@@ -853,7 +854,8 @@ stream_id | |||
|
|||
> **Transmitter-Supplied**, REQUIRED. A string that uniquely identifies the stream. A | |||
Transmitter MUST generate a unique ID for each of its non-deleted streams | |||
at the time of stream creation. | |||
at the time of stream creation. Transmitters are recommended to use character set | |||
described in Section 2.3 of {{rfc3986}}}} to generate the stream ID. |
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.
described in Section 2.3 of {{rfc3986}}}} to generate the stream ID. | |
described in Section 2.3 of {{RFC3986}}}} to generate the stream ID. |
I don't know if capitalizing this matters, but it seems like the others are capitalized.
Closes #229 and #223