11

当从服务器(例如 Twitter 和 Facebook)处理 OAuth 时,您很可能会将用户重定向到请求应用程序许可的 URL。通常,单击链接后,您通过 AJAX 将请求发送到服务器,然后返回授权 URL。

但是当您在收到答案时尝试使用window.open时,您的浏览器会阻止弹出窗口,使其无用。当然,您可以将用户重定向到新的 URL,但这会破坏用户体验,而且很烦人。您不能使用 IFRAMES,但不允许使用它们(因为您看不到地址栏)。

那么该怎么做呢?

4

2 回答 2

28

答案很简单,可以跨浏览器运行,没有任何问题。在进行 AJAX 调用时(在本例中我将使用 jQuery),只需执行以下操作。假设我们有一个带有两个按钮Login with Twitter和的表单Login with Facebook

<button type="submit" class="login" value="facebook" name="type">Login with Facebook</button>
<button type="submit" class="login" value="twitter" name="type">Login with Twitter</button>

然后是魔法发生的Javascript代码

$(function () {
    var
        $login = $('.login'),
        authWindow;

    $login.on('click', function (e) {
        e.preventDefault();
        /* We pre-open the popup in the submit, since it was generated from a "click" event, so no popup block happens */
        authWindow = window.open('about:blank', '', 'left=20,top=20,width=400,height=300,toolbar=0,resizable=1');
        /* do the AJAX call requesting for the authorize URL */

        $.ajax({
            url: '/echo/json/',
            type: "POST",
            data: {"json": JSON.stringify({"url": 'http://' + e.target.value + '.com'})}
            /*Since it's a jsfiddle, the echo is only for demo purposes */
        })
        .done(function (data) {
            /* This is where the magic happens, we simply redirec the popup to the new authorize URL that we received from the server */
            authWindow.location.replace(data.url);
        })
        .always(function () {
            /* You can poll if the window got closed here, and so a refresh on the main page, or another AJAX call for example */
        });
    });
});

这是 JSFiddle http://jsfiddle.net/CNCgG/中的 POC

这是简单而有效的:)

于 2013-05-03T14:52:34.483 回答
8

尝试添加 async: false。它应该工作

$('#myButton').click(function() {
$.ajax({
    type: 'POST',
    async: false,
    url: '/echo/json/',
    data: {'json': JSON.stringify({
        url:'http://google.com'})},
    success: function(data) {
        window.open(data.url,'_blank');
    }
});
});
于 2014-05-15T22:21:20.203 回答