我已经用 ReactJs 设置了 github 的 Electron。所以我有一个BrowserWindow
和一个反应应用程序在那个窗口中运行良好。我想要实现的是通过 GitHub 进行身份验证。因此,当用户按下Login with Github
按钮时,BrowserWindow
会打开一个新的并转到 github 授权应用程序 url。我遇到的问题与回调有关,以及如何获取回调返回的代码。我已经用 Apache Cordova 完成了它,InAppBrowser
但是它是不同的,因为我能够localhost
用作回调。
到目前为止,我对电子所做的事情是打开新的BrowserWindow
,但在授权之后,我无法从回调中获取代码。
var authWindow = new BrowserWindow({ width: 800, height: 600, show: true, 'always-on-top': true });
var githubUrl = 'https://github.com/login/oauth/authorize?';
var authUrl = githubUrl + 'client_id=' + options.client_id + '&scope=' + options.scope;
authWindow.loadUrl(authUrl);
authWindow.setVisibleOnAllWorkspaces(true);
authWindow.setResizable(false);
authWindow.addListener('page-title-updated', function(stream) {
console.log("LOADED");
console.log(JSON.stringify(stream));
console.log(stream);
var url = (typeof stream.url !== 'undefined' ? stream.url : stream.originalEvent.url),
raw_code = /code=([^&]*)/.exec(stream.url) || null,
code = (raw_code && raw_code.length > 1) ? raw_code[1] : null,
error = /\?error=(.+)$/.exec(strean.url);
if (code || error) {
authWindow.close();
}
// If there is a code in the callback, proceed to get token from github
if (code) {
// requestToken(code);
} else if (error) {
alert("Oops! Couldn't log authenticate you with using Github.");
}
});
我在哪里我console.log(JSON.stringify(stream));
得到{}
所以这是必须做的事情eventListener
?有什么想法或更好的方法吗?