Eyeson Documentation
Explore our guides and examples to integrate Eyeson
Eyeson API
Eyeson SDKs
Other Products
Try it out
- Start a meeting
- Join a meeting
Uses the same resource in multiple requests, when set.
curl -X POST \
-H "Authorization: YOUR_API_KEY" \
-d "id=tryout" \
-d "user[name]=Bob" \
"https://api.eyeson.team/rooms"
- GUI
- JavaScript
- Android
- iOS
note
Start a meeting first
See room reference to see how to obtain the guest link.
// 1) Start a meeting to obtain ACCESS_KEY
let accessKey = 'ACCESS_KEY';
// 2) then join with:
eyeson.start(accessKey);
val eyesonMeeting = EyesonMeeting(eventListener, application)
eyesonMeeting.join(
accessKey = "ACCESS_KEY",
frontCamera = true,
audioOnly = false,
local = localVideoRenderer,
remote = remoteVideoRenderer
)
import EyesonSdk
// 1) Start a meeting to obtain ACCESS_KEY
let accessKey = "ACCESS_KEY"
// 2) the join with:
Eyeson.shared.join(accessKey) { meeting, terminated in
// ...
}