Swift 4.0과 Xcode 11.1을 사용하고 있으며 페이스 북 로그인 버튼을 클릭하면 "Safari는 서버에 보안 연결을 설정할 수 없기 때문에 페이지를 열 수 없습니다"가 나타납니다 나는 문서의 도움으로 만들었습니다. 내가 pod install
과 pod update
, 나는 그런 내가 관련이 생각하지 않습니다 의미 론적 문제로만 프레임 워크 경고와 함께 컴파일 할 수 있었다했던Facebook의 Swift SDK를 사용하는 네트워크 오류
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
후 : 내 PodFile에 다음을 넣어 페이스 북에서 스위프트 SDK를 수입 여기 문제. 내가 듣고있는 한 가지 경고는 나에게이 말을하고있다 : Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'Project_Name_Here/Info.plist'.
비록 그것이 문제와 관련이 있는지 잘 모르겠다.
import FacebookLogin
import FacebookCore
...
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
SDKApplicationDelegate.shared.application(application, didFinishLaunchingWithOptions: launchOptions)
// Override point for customization after application launch.
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
return SDKApplicationDelegate.shared.application(app, open: url, options: options)
}
...
여기 내 ViewController.swift
파일입니다 : 여기
AppDelegate.swift
입니다
다음
import FacebookCore
import FacebookLogin
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let loginButton = LoginButton(readPermissions: [.email])
loginButton.center = view.center
view.addSubview(loginButton)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
응용 프로그램없이 실행 후 (버튼을 클릭하기 전에 내가 콘솔에서 얻을 메시지입니다 모든 오류) :
2017-11-12 01:45:32.501025-0600 Project_Name_Here[50388:41598259] Falling back to loading access token from NSUserDefaults because of simulator bug
2017-11-12 01:45:32.501301-0600 Project_Name_Here[50388:41598259] Falling back to storing access token in NSUserDefaults because of simulator bug
2017-11-12 01:45:32.501791-0600 Project_Name_Here[50388:41598259] Falling back to loading access token from NSUserDefaults because of simulator bug
2017-11-12 01:45:32.502636-0600 Project_Name_Here[50388:41598259] Falling back to storing access token in NSUserDefaults because of simulator bug
2017-11-12 01:45:32.504182-0600 Project_Name_Here[50388:41598259] Falling back to loading access token from NSUserDefaults because of simulator bug
2017-11-12 01:45:32.504688-0600 Project_Name_Here[50388:41598259] Falling back to storing access token in NSUserDefaults because of simulator bug
2017-11-12 01:45:32.740935-0600 Project_Name_Here[50388:41598259] [MC] System group container for systemgroup.com.apple.configurationprofiles path is /Users/np/Library/Developer/CoreSimulator/Devices/DBE38B81-E28F-485E-B967-A76E1D2B019C/data/Containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2017-11-12 01:45:32.743511-0600 Project_Name_Here[50388:41598259] [MC] Reading from private effective user settings.
2017-11-12 01:45:32.751346-0600 Project_Name_Here[50388:41598259] Could not successfully update network info during initialization.
2017-11-12 01:45:33.146213-0600 Project_Name_Here[50388:41598380] TIC Read Status [1:0x0]: 1:57
2017-11-12 01:45:33.146353-0600 Project_Name_Here[50388:41598380] TIC Read Status [1:0x0]: 1:57
시뮬레이터가 있습니다. 버그 수정은 Xcode 9.1로 업데이트 한 후 문제를 해결할 수 있다고 생각했지만 오류가 더 심해졌습니다. 나는 각각의 오류를 인터넷 검색을 해봤지만 모든이의 Info.plist에 넣어 말했다
2017-11-12 01:45:43.550223-0600 Project_Name_Here[50388:41598259] -canOpenURL: failed for URL: "fbauth2:/" - error: "The operation couldn’t be completed. (OSStatus error -10814.)"
2017-11-12 01:45:43.551413-0600 Project_Name_Here[50388:41598259] Falling back to storing access token in NSUserDefaults because of simulator bug
2017-11-12 01:45:43.553518-0600 Project_Name_Here[50388:41598259] -canOpenURL: failed for URL: "fbauth2:/" - error: "The operation couldn’t be completed. (OSStatus error -10814.)"
2017-11-12 01:45:45.850963-0600 Project_Name_Here[50388:41598259] [App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction
2017-11-12 01:45:45.942460-0600 Project_Name_Here[50388:41598369] TIC Read Status [2:0x0]: 1:57
2017-11-12 01:45:45.944297-0600 Project_Name_Here[50388:41598369] TIC Read Status [2:0x0]: 1:57
적절한 자격 증명을 파일,하지만 난 이미 했어 : 나는 페이스 북 버튼에 로그인을 클릭 한 후 얻는 오류는 그것과 아무것도 고정하지 않았습니다. TIC 메시지는 TCP/IP 연결과 관련이 있지만 페이스 북 SDK 설치 및 작동에 대한 기본 자습서를 따라 왔기 때문에 어떤 옵션도 사용하지 않았습니다.
감사합니다. 감사합니다.
예 내가 이미 완료했다. 비록 내가하지 않았더라도, 그것은 네트워크 오류를 야기해서는 안된다. – justnealpatel