如何使用 nativescript 中的 SFAuthenticationSession?

how do I use SFAuthenticationSession from nativescript?

我正在研究 nativescript 应用程序中的一些 SSO 行为。我有以下 Swift 代码可以正常工作:

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
    }

    var webAuthSession: SFAuthenticationSession?

    @IBAction func click(sender: AnyObject)
    {
        let authURL = URL(string: "http://localhost:5000/redirect.html");
        let callbackUrlScheme = "myApp://"

        self.webAuthSession = SFAuthenticationSession.init(url: authURL!, callbackURLScheme: callbackUrlScheme, completionHandler: { (callBack:URL?, error:Error?) in

            // handle auth response
            guard error == nil, let successURL = callBack else {
                return
            }

            print(successURL.absoluteString)
        })

        self.webAuthSession?.start()
    }
}

由此我得出了等效的打字稿代码(在 .ios.ts 文件中)

function callback(p1: NSURL, p2: NSError) {
    console.log('Got into the url callback');
    console.log(p1);
    console.log(p2);
};

public onTap() {
    const session = new SFAuthenticationSession(
        {
            URL: NSURL.URLWithString('localhost:3500/redirect.html'),
            callbackURLScheme: 'myApp://',
            completionHandler: callback,
        },);
    console.log('session created');

    console.log('the session is ', session);
    console.log('the start method is ', session.start);
    console.log('about to call it');
    session.start();    
    console.log('After calling start');
}

这一切都可以正常编译和构建,但是当 运行 它在 session.start() 调用时崩溃一秒钟左右。在此之前我得到了输出,包括 'about to call it' 方法,但之后什么也没有,甚至没有错误消息或堆栈转储。

这里有什么明显的错误吗?从 typescript 调用本机 ios 共享库方法需要做什么特别的事情吗?

我认为您必须将 session 变量的引用全局存储到文件中。由于它的作用域局限于函数,它可能会在 onTap 函数作用域完成后立即被销毁。你可以试试,

function callback(p1: NSURL, p2: NSError) {
    console.log('Got into the url callback');
    console.log(p1);
    console.log(p2);
};

let session;

public onTap() {
    session = new SFAuthenticationSession(
        {
            URL: NSURL.URLWithString('localhost:3500/redirect.html'),
            callbackURLScheme: 'myApp://',
            completionHandler: callback,
        },);
    console.log('session created');

    console.log('the session is ', session);
    console.log('the start method is ', session.start);
    console.log('about to call it');
    session.start();    
    console.log('After calling start');
}

我今天发现了这个问题,这是一个令人尴尬的小错误。

当我进行翻译时,我设法从原始代码中删除了 http://。

URL: NSURL.URLWithString('localhost:3500/redirect.html'),

当 运行 在同事的机器上时,我们在日志中获得了更多详细信息,事实证明,唯一支持的方案是 http 或 https。它必须显式添加到 url。

所以这修复了它(除了上面 Manoj 的更改)

URL: NSURL.URLWithString('http://localhost:3500/redirect.html'),