페이스북 iOS SDK를 적용하는 도중
cannot use the facebook app or safari to authorize fb1234567890 is not registered as a url scheme
위와 같은 에러 메세지와 함께 SSO가 작동하지 않는 경우가 있다.
이럴 경우 Info.plist 내부의 값을 변경해 주는 것으로 간단하게 처리 된다.
<key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLSchemes</key> <array> <string>fb12345**********</string> </array> </dict>
info.plist 파일을 텍스트 편집기로 열어서 위와 같이 바꿔주면 된다.
주의사항은 URL Scheme 를 CFBundleURLSchemes로 변경하는것이 아닌 CFBundleURLSchemes 부분의 string을 fbAPP_ID로 변경해 주어야 한다.
'Development > iOS' 카테고리의 다른 글
iOS 페이스북 링크 사파리에서 열기 (0) | 2014.07.25 |
---|---|
iOS Google Analytics sqlite3 링크 에러 (0) | 2014.07.17 |
cocos2d-x iOS SimpleAudioEngine 효과음 버그 수정 (0) | 2014.07.17 |
didRegisterForRemoteNotificationsWithDeviceToken 함수가 호출되지 않는 경우 (0) | 2014.07.17 |
iOS GooglePlayGameService 연동시 로드 되지 않을때 (0) | 2014.07.07 |