Ошибка при попытке использовать Open Tok со Swift

Я пытаюсь использовать библиотеку Open Tok в Swift через канал платформы Flutter для вызова собственного кода IOS.

[ERROR] rumor_client_v1.c:274 - otk_rumor_v1_client_send (pClient == NULL) rumor client is not initialized and cannot send message

Не могу понять, чем это вызвано.

Я пытался проверить их образец, но получаю ту же ошибку. Даже чистый/новый проект приводит к тому же.

Текущая настройка:

*********************** OpenTok iOS SDK **************************** **** Version/Revision: ios-2.22.3/86d684fa2c49c335cc63ce5c52f57fd8610db130 **** Library built on: May 17 2022 **** Copyright 2022 Vonage **** Licensed under the Apache License, Version 2.0 ****Xcode 14.1 на Mac OS 12.6

Мой код:

      print("initSession")
let args = call.arguments as! [String: Any]
let apiKey = args["apiKey"] as! String
let sessionId = args["sessionId"] as! String
let token = args["token"] as! String
var error: OTError?
let session = OTSession(apiKey: apiKey, sessionId: sessionId, delegate: self)!
print("My session id" + session.sessionId)
// try to connect to the session with the token
session.connect(withToken: token, error: &error)
if let error = error {
print("Error connecting to session: \(error.localizedDescription)")
}

результат :the print of the session returns the session id

Если найду решение, напишу вам

0 ответов

Другие вопросы по тегам