0

我正在将 Zoom SDK 集成到我的 Android 项目中,并且遇到了关于自定义邀请方法的问题。实际上,我在演示应用程序中尝试了自定义邀请模式,它工作正常,但是当我试图在我现有的项目中做同样的事情时,它就不起作用了。我在现有项目中看不到自定义邀请方法。我在清单文件夹中更改了包名称并在配置文件中添加了代码。请指导。

清单代码:- <activity android:name="com.geniusstudent.smp.otherfeatures.MyInviteActivity" ......... <intent-filter> <action android:name="com.geniusstudent.smp.intent.action.MeetingInvite" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>

配置代码:- <bool name="zm_config_invite_by_only_action_meeting_invite">false</bool> <string name="zm_config_conf_activity">com.geniusstudent.smp.inmeetingfunction.zoommeetingui.CustomZoomUIActivity</string>

4

1 回答 1

0

您可以使用 ZOOM API 进行邀请。我已经使用 post 方法使用 API 完成了它。你可以试试这个方法。

https://api.zoom.us/v2/users/userId/meetings
userId= you can get it when you create a zoom id.
Bearer Token adds in API. After that, you can Invite with link anyone. 

{
  "topic": "Test 06",
  "type": 2,
  "start_time": "2020-08-29T16:19:22+0600",
  "duration": 30,
  "timezone": "Asia/Dhaka",
  "password": "Masum@",
  "agenda": "test meeting agenda",
  "recurrence": {
      "type":1
  }
于 2020-08-06T04:45:14.283 回答