Skip to main content

Swift API Manager -Alamofire-Refresh Token-With TestCases

  import Foundation import KeychainAccess enum APIError : Error { case accessTokenExpired case networkError // Add more error cases as needed } class APIManager { private let keychain = Keychain (service: "com.example.app.refreshToken" ) private let refreshTokenKey = "refreshToken" private var accessToken: String ? func callAPI < T : Codable >( urlString : String , method : String , parameters : [ String : Any ] ? , completion : @escaping ( Result < T , APIError >) -> Void ) { guard let url = URL (string: urlString) else { completion(.failure(.networkError)) return } var request = URLRequest (url: url) request.httpMethod = method // Add access token to the request headers if available if let token = accessToken { request.setValue( "Bearer \(token) " , forHTTPHeaderField: "Aut...

Deep linking Tutorial in ios Swift or Universal Link

Set Up a Universal Links (Deep Linking) for Your App ios 9

Universal Links (Deep Linking) - Deep Linking is a most important in mobile application ios or android apps. Deep Linking means a link from another app or even from a website to your app. On iOS 9, Apple announced “Universal Links” where instead of opening Safari first, the iOS will check if the Universal Link is registered to the domain associated with the link, then checks if the corresponding app is installed. The app is opened if installed, and if not, Safari will be load an http(s) link. This functionality allows one link for both website and app.

Register Your URL Scheme

1- Go to Info.plist
2- Add URL Types then within Item 0
     Set Document Role to Editor.
     Then URL Identifier - app bundle ID.
     Then URL schemes    - (1 item)
     with in item 0     -  DeepLink


Deep Linking ios
 


Comments

Post a Comment