Yaffle / EventSource

a polyfill for http://www.w3.org/TR/eventsource/
MIT License
2.11k stars 338 forks source link

How to pass 'body' params to EventSourcePolyfill? #175

Open sabetAI opened 3 years ago

sabetAI commented 3 years ago

If I have a curl request like the following:

curl -G https://api.openai.com/v1/engines/davinci/completions/browser_stream \
  --data-urlencode prompt='Once upon a time' \
  --data-urlencode max_tokens=3 \
  -H 'Authorization: Bearer YOUR_API_KEY'

How do I pass --data-urlencode prompt='Once upon a time' to my to EventSourcePolyfill request?

Yaffle commented 3 years ago

there is no option to send POST request or add a body to a request, could you add a query parameter instead?

sabetAI commented 3 years ago

Sure, could you show me an example?

Yaffle commented 3 years ago

new EventSource("https://example.com/?prompt=Once%20upon%20a%20time&max_tokens=3")