1
我試圖在jQuery/ajax函數中觸發Google plus connect API。 我得到的迴應是未定義的。 Firebug顯示一個空的迴應。Google Plus使用jQuery/Ajax連接API
這是代碼我使用:
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+');
}
結果在Firebug是:
Header Post Antwort HTML
index.php 415 ajax ends undefined from g+
有沒有人成功地做到了這一點?你推薦一個更好的環境嗎?