[ios] 카카오 로그인 오류 the provided scheme is not valid. a scheme should not include special characters such as \":\" or \"/\".
2023. 5. 31. 00:59
카테고리 없음
해결방법 직접 카카오 sdk의 pod 파일을 열고 수정한다. ASWebAuthenticationSession.init 카카오 로그인시 이 부분에서 앱이 자꾸 크래쉬남 SDK버전을 올릴 수 없어서 해결책을 찾아서 해결함기존 let authenticationSession = ASWebAuthenticationSession.init(url: url, callbackURLScheme: try! KakaoSDKCommon.shared.redirectUri(), completionHandler:authenticationSessionCompletionHandler) 수정 본 let scheme = URL(string: try! KakaoSDKCommon.shared.redirectUri())?.scheme ?? ""..