【发布时间】:2017-02-13 06:07:09
【问题描述】:
我是一名自学新手,使用 swift 开发 iPhone 应用程序。我正在使用 FBSDK 设计用于 Facebook 身份验证的登录页面。我已经成功实现了登录和注销的登录按钮。它返回用户名和 ID,但无法绘制用户电子邮件 ID 并显示代码 2500 错误。我也无法使用新用户登录。它会自动使用同一用户登录。
这是错误:
UserInfo={com.facebook.sdk:FBSDKGraphRequestErrorCategoryKey=0, com.facebook.sdk:FBSDKGraphRequestErrorHTTPStatusCodeKey=400, com.facebook.sdk:FBSDKErrorDeveloperMessageKey=An active access token must be used to query information about the current user., com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCode=2500, com.facebook.sdk:FBSDKGraphRequestErrorParsedJSONResponseKey={
body = {
error = {
code = 2500;
"fbtrace_id" = BimF4Nuqx0v;
message = "An active access token must be used to query information about the current user.";
type = OAuthException;
};
};
code = 400;
}})
Successfully logged in with Facebook...
123
result Optional({
id = 120008981838163;
name = "Nisha Ios";
})
Did Logout of Facebook
这是我在 AppDelegate.swift 中的代码:
import UIKit
import CoreData
import FBSDKCoreKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions)
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any]) -> Bool {
var handled=FBSDKApplicationDelegate.sharedInstance().application(app, open: url,
sourceApplication: options[UIApplicationOpenURLOptionsKey.sourceApplication] as! String!, annotation: options[UIApplicationOpenURLOptionsKey.annotation])
return handled
}
func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
FBSDKAppEvents.activateApp()
}
这是我在 ViewController.swift 中的代码:
import UIKit
import FBSDKLoginKit
import FBSDKCoreKit
class ViewController: UIViewController, UITextFieldDelegate, FBSDKLoginButtonDelegate, {
@IBOutlet var emailField: UITextField!
@IBOutlet var passField: UITextField!
@IBOutlet var customButton: FBSDKLoginButton!
@IBOutlet var myView: UIView!
override func viewDidLoad() {
super.viewDidLoad()
self.emailField.delegate = self;
self.passField.delegate = self;
customButton.readPermissions=["email","public_profile"]
customButton.delegate=self
customButton.addTarget(self, action: #selector(handleCustomFBLogin), for: UIControlEvents.touchUpInside)
func handleCustomFBLogin(){
// FBSDKLoginManager().logIn(withReadPermissions: ["email","public_profile"], from: self)
// { (result, error) -> Void in
// if error != nil {
// print("custom FB Login Failed",error)
// }
//}
self.showEmail()
print(123)
}
func showEmail()
{
FBSDKGraphRequest(graphPath: "/me", parameters: ["fields": "email, id, name"]).start {
(connection, result, err) in
if(err == nil)
{
print("result \(result)")
}
else
{
print("error \(err)")
}
}
}
public func loginButton(_ loginButton: FBSDKLoginButton!, didCompleteWith result: FBSDKLoginManagerLoginResult!, error: Error!) {
if error != nil
{
print(error)
return
}
else{
print("Successfully logged in with Facebook... ")
}
//showEmail()
}
func loginButtonDidLogOut(_ loginButton: FBSDKLoginButton!){
print("Did Logout of Facebook")
}
在 func handleCustomFBLogin() 中,我注释了一些代码。如果我取消注释它们,我将无法获得用户名或 ID,只会收到代码 2500 错误。
谁能告诉我我做错了什么?还帮助我使用新用户登录而不是自动使用同一用户登录? 提前非常感谢:-)
【问题讨论】:
标签: ios swift3 facebook-login fbsdk