Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions VideoQuickStart/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ class ViewController: UIViewController {
logMessage(messageText: message)
return
}

do {
let data = accessToken.data(using: .utf8)!
guard let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: Any] else { return }
let token = Token(json: json)
accessToken = token.token ?? ""
} catch {
let message = "Failed to extract token from json object"
logMessage(messageText: message)
return
}
}

// Prepare local media which we will share with Room Participants.
Expand Down