-
iOS) Thread 1: Exception: "App ID not found. Add a string value with your app ID for the key FacebookAppID to the Info.plist or call [FBSDKSettings setAppID:]." 오류 해결하는 방법Programing Language/iOS(Swift) 2020. 4. 29. 17:15728x90반응형
페이스북 로그인 연동할때 info.plist에 아무리 올바르게 입력해도 제목과 같은 오류가 날때에는 다음과 같이 해보세요.
AppDelegate.swift 파일입니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { ApplicationDelegate.shared.application( application, didFinishLaunchingWithOptions: launchOptions )//Facebook loing 하기 위해 사용된 코드 // Override point for customization after application launch. FBSDKCoreKit.Settings.appID = "앱ID"//앱 ID : 페이스북 페이지에서 받은 앱의 ID return true } 728x90반응형'Programing Language > iOS(Swift)' 카테고리의 다른 글
Alamofire 분석 (0) 2020.04.30 iOS) 네이버 로그인 연동하는 방법[펌] (0) 2020.04.29 iOS) Facebook 로그인 연동 custom Buttom으로 만들기 (0) 2020.04.29 iOS) uiObject(예: 이미지뷰) 삭제하는 방법 (0) 2020.04.16 iOS) 서버와 통신할때 get으로 보내는 단어 가 한글일때 인코딩 하는 방법 (0) 2020.04.10