Integrations
SDK
Integrate Pagecall with your app
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Integrate Pagecall with your app
import { Pagecall } from "@pagecall/react";
...
return (
<Pagecall
mode="meet"
roomId="<room id>"
accessToken="<access token>"
/>
);
let pagecall = PagecallWebView()
_ = pagecall.load(roomId: "<room id>", accessToken: "<access token>", mode: .meet)
public class MainActivity extends AppCompatActivity {
...
@Override
protected void onCreate(Bundle savedInstanceState) {
...
webView = new PagecallWebView(MainActivity.this);
webView.load("{room_id}", "{token}", PagecallWebView.PagecallMode.MEET);
}
import { PagecallView } from "react-native-pagecall";
...
return (
<PagecallView
mode="meet"
roomId="<room id>"
accessToken="<access token>"
/>
);
PagecallViewController? _pagecallViewController;
...
Expanded(
child: PagecallView(
mode: "meet",
roomId: "<room id>",
accessToken: "<access token>",
onViewCreated: (controller) {
_pagecallViewController = controller;
},
),
),
