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
Please do a quick search on GitHub issues first, the feature you are about to request might have already been requested.
Expected Behavior
public void subscribe(String url, String sseHeaders, SseEventHandler eventHandler) { HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(url)) .header("Accept", "text/event-stream") .header("Cache-Control", "no-cache") .headers(sseHeaders) .GET() .build();
Current Behavior
public void subscribe(String url, SseEventHandler eventHandler) { HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(url)) .header("Accept", "text/event-stream") .header("Cache-Control", "no-cache") .GET() .build();
Context
No way to do authentication for the SSE connection
The text was updated successfully, but these errors were encountered:
Duplicate of #68 ?
Sorry, something went wrong.
No branches or pull requests
Please do a quick search on GitHub issues first, the feature you are about to request might have already been requested.
Expected Behavior
Current Behavior
Context
No way to do authentication for the SSE connection
The text was updated successfully, but these errors were encountered: