gpt4 book ai didi

android - 使用 Sinch Video Calling 传递额外数据

转载 作者:行者123 更新时间:2023-11-30 01:24:37 25 4
gpt4 key购买 nike

这是我如何实现调用的代码。

@Override
public void onClientStarted(SinchClient sinchClient) {
Log.e(TAG, "started");

callClient = sinchClient.getCallClient();
callClient.addCallClientListener(this);
}
public void initiateCall(String receiverId) {
Call call = callClient.callUserVideo(receiverId);
call.addCallListener(this);
}

但是我想传递一些数据,比如用户名、头像和其他东西,有什么方法可以通过视频通话传递这些数据吗?

最佳答案

从 sinch 开发者那里得到了解决方案。

You can pass along custom data providing headers to the callUserVideo(String toUserId, Map headers) method. The headers you pass can be retrieved from the incoming Call object using getHeaders() method. https://download.sinch.com/docs/android/latest/reference/com/sinch/android/rtc/calling/Call.html

我们可以在初始化调用时在 map 中传递额外的值。

HashMap<String,String> map=new HashMap<>();
map.put("userId","5");
map.put("profileImage","image url");

Call call = callClient.callUserVideo(receiverId,map);

关于android - 使用 Sinch Video Calling 传递额外数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36564989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com