Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Made it so that it reads the JWT and sends the appropriate strin… #370

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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