Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.05 KB

README.md

File metadata and controls

40 lines (31 loc) · 1.05 KB

restAPI

Create a meeting

Create a meeting with a HTTP request containing the API_KEY sent to Videolify’s server. The response contains a meeting URL that can be embedded in your client within an iframe.

# js
node meeting.js
# php
php meeting.php
# python
python meeting.py
# bash
./meeting.sh

Embed a meeting

Embedding a meeting into a service or app requires using an iframe with the src attribute specified as the meeting from HTTP response.

<iframe
  allow="camera; microphone; fullscreen; display-capture; autoplay"
  src="https://videolify.up.railway.app/join/room_name"
  style="height: 100%; width: 100%; border: 0px;"
></iframe>

Fast Integration

Develop your website or application, and bring video meetings in with a simple iframe.

<iframe
  allow="camera; microphone; fullscreen; display-capture; autoplay"
  src="https://videolify.up.railway.app/newcall"
  style="height: 100%; width: 100%; border: 0px;"
></iframe>