0

The Pusher documentation states that it does not support binary websocket frames. Why is this the case and how would one send non-text data, e.g. blobs, through Pusher?

user17832896
  • 55
  • 1
  • 1
  • 5

1 Answers1

1

You need to find a way to serialize your data in order to send it over. For binary data transmitted over text formats like JSON/XML, the most common way is to use base64.

Tom Raganowicz
  • 2,169
  • 5
  • 27
  • 41