Meteor の oauth パッケージの oauth_server.js にある関数をオーバーライドする必要があります。
交換したい -
var closePopup = function(res) {
res.writeHead(200, {'Content-Type': 'text/html'});
var content =
'<html><head><script>window.close()</script></head></html>';
res.end(content, 'utf-8');
};
次のようなもので-
var closePopup = function(res) {
res.writeHead(200, {'Content-Type': 'text/html'});
var content =
'<html><head><script>window.location.href = "http://www.google.com/";</script></head></html>';
res.end(content, 'utf-8');
};
このパッケージは流星のコア パッケージなので、単に削除して修正版を追加することはできないと思います。
編集した変数 (関数) をメイン サーバー コードに追加しようとしましたが、Meteor の動作に変化は見られませんでした。
事前に感謝します、ダニエル。