我正在尝试在 jquery/ajax 函数中触发 Google plus 连接 API。我得到的响应是不确定的。Firebug 显示一个空响应。
这是我正在使用的代码:
function gPlusConnect ()
{
console.debug('line 401 ajax gestartet');
result=$.ajax({
type: 'POST',
async: false, // false
url: 'https://accounts.google.com/o/oauth2/auth',
data: ({
scope:'https://www.googleapis.com/auth/userinfo.email+https://www.googleapis.com/auth/userinfo.profile',
state:'/profile',
redirect_uri:'https://ssl.webpack.de/learnface.de/donation/launchpages',
response_type:'code',
client_id:'.........82.apps.googleusercontent.com',
})
}).responseText;
console.debug('index.php 415 ajax ends with '+result+' from g+');
}
萤火虫的结果是:
Header Post Antwort HTML
index.php 415 ajax ends undefined from g+
有没有人成功做到这一点?你推荐一个更好的替代品吗?