Advertisement
Don_Mag

Untitled

Mar 9th, 2022
1,193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.44 KB | None | 0 0
  1.  
  2.         guard let authManager = self.authManager else {
  3.             fatalError("self.authManager is not valid")
  4.         }
  5.         guard let authState = authManager.authState() else {
  6.             fatalError(".authState() is not valid")
  7.         }
  8.         guard let lastTokenResponse = authState.lastTokenRepsonse else {
  9.             fatalError(".lastTokenRepsonse is not valid")
  10.         }
  11.         guard let accessToken = lastTokenResponse.accessToken else {
  12.             fatalError(".accessToken is not valid")
  13.         }
  14.        
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement