Screen Sharing in Ionic [Help needed]

Hello I am using ionic 2.11.0 on Ionic 4 for one to one audio call

Few questions:

  1. Does it support screen sharing? (as far as I have seen it doesn’t)
  2. As I guess it doesn’t support screen sharing how about taking a screenshot and send base64 in room using message option
    https://docs.openvidu.io/en/2.11.0/cheatsheet/send-messages/
  3. my question is can I do it ? it is (point 2) already implemented using socket but I there are some performance issues.
  4. What is limit of data I can send in message?

Thanx in advance

No

You can do it, but there is a limit in WebSocket messages.

Yes.

Is the standard limit of websocket messages in Tomcat. I think is 8192 bytes but better make some tests by yourself.

I recommend you to perform some tests.

Messages are not designed to handle big messages. Maybe is better to use other alternatives to avoid problems.

Thank you for quick reply.

can you please suggest other alternatives?

TIA

Sending the image to the server using REST API and sharing the url with other via message.

great thank you for reply

I will search it myself but if you have some link to read for below question
how can I use server to send message to room?

Thank you
you are a life saver :slight_smile:

Just file upload and download in web.

It depends on what backend tech are you using.

Regards