我在iOS 10上使用
Swift 3编写应用程序.当用户拒绝来自系统或帐户的帐户权限时,sharedInstance()方法会向控制台抛出错误(例如“无法使用系统帐户进行身份验证”).在进入关闭之前,控制台上会显示错误.我不会在应用中向用户显示此错误,例如在警报.这是我的代码:
Twitter.sharedInstance().logIn { (session,error) in if error != nil { // print(error?.localizedDescription ?? " ") return })
我收到此错误:
2016-11-29 14:49:09.023 CarReview[1254:31719] [TwitterKit] did encounter error with message "Unable to authenticate using the system account.": Error Domain=TWTRLogInErrorDomain Code=2 "User allowed permission to system accounts but there were none set up." UserInfo={NSLocalizedDescription=User allowed permission to system accounts but there were none set up.} 2016-11-29 14:49:09.024 CarReview[1254:31719] [TwitterKit] No matching scheme found. 2016-11-29 14:49:09.292 CarReview[1254:31719] [TwitterKit] did encounter error with message "Error obtaining user auth token.": Error Domain=TWTRLogInErrorDomain Code=-1 "<?xml version="1.0" encoding="UTF-8"?> <hash> <error>Desktop applications only support the oauth_callback value 'oob'</error> <request>/oauth/request_token</request> </hash> " UserInfo={NSLocalizedDescription=<?xml version="1.0" encoding="UTF-8"?> <hash> <error>Desktop applications only support the oauth_callback value 'oob'</error> <request>/oauth/request_token</request> </hash> }
我面临的问题与问题相同.
我刚刚将callBack Url设置为Twitter应用程序并解决了问题.
原文链接:/swift/319158.html我刚刚将callBack Url设置为Twitter应用程序并解决了问题.
转到https://apps.twitter.com/app – >设置 – >要保存的回调URL和更新设置.