0

I am new to react js. I want to know how to implement Callkit in an already built reactjs app. Everything is done I just need to apply a module for a video call using agora.io. On button click Incoming video call show on second end user's screen he/she can accept or refuse it. Once call is accept video call started.

Thanks in Advance

1 Answers1

2

You can use this sample app for a basic React based video calling application.

With this sample app, you can:

  • Join a meeting room with up to 7 people
  • Leave the meeting room
  • Disable/Enable audio
  • Disable/Enable video
  • Apply two layouts views
  • Hide a remote window

Video Call Documentation: https://docs.agora.io/en/Video/API%20Reference/web_ng/index.html


To implement the call invitation, you can refer Agora's Docs:

Akshat Gupta
  • 572
  • 3
  • 7
  • Hello Akshat I need one to one video call with call notifications, accept and a rejection option on react js's web app.Thanks in Advance – Nisha Negi Feb 08 '21 at 04:16
  • Hey @NishaNegi you can follow the docs I sent and make the application how you need. You can limit number of users using [RTM](https://docs.agora.io/en/Real-time-Messaging/API%20Reference/RTM_web/v1.0.0/index.html) by sending messages with user count and kicking extra new users. RTM will act like a socket connection between all users. – Akshat Gupta Feb 10 '21 at 09:22