我正在本机脚本应用程序中进行一些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”方法,但之后没有任何输出,甚至没有错误消息或堆栈转储。
在这里我做错了什么吗?从打字稿到本地ios共享库方法调用是否需要做些特殊的事情?
答案 0 :(得分:0)
我认为您必须将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');
}
答案 1 :(得分:0)
我今天发现了问题,这是一个令人尴尬的琐碎错误。
当我进行翻译时,我设法从原始代码中删除了http://。
URL: NSURL.URLWithString('localhost:3500/redirect.html'),
在同事的计算机上运行时,我们在日志中获得了更多详细信息,事实证明,仅支持HTTP或https方案。必须将其显式添加到url中。
因此,此问题得以解决(除了上述Manoj的更改)
URL: NSURL.URLWithString('http://localhost:3500/redirect.html'),