我正在尝试OAuth
在 Spotify 应用程序中完成身份验证。默认情况下,window.open
被阻止,我不确定是否有任何方法可以解决这个问题。所以,我想知道处理这个问题的最佳方法是什么。我希望能够执行以下操作:1)将用户重定向到身份验证链接 2)一旦他们通过身份验证,我希望能够得到通知以处理返回 URL 并从中提取访问令牌。
几个选项,我正在考虑:1) IFrame
2) $.ajax() -- problem is, this doesn't seem to load all javascript/css files from the auth url properly.
有什么建议么?