gpt4 book ai didi

javascript - getJson 解析器不起作用

转载 作者:行者123 更新时间:2023-12-02 19:51:17 24 4
gpt4 key购买 nike

嗨,我正在尝试解析 url 的 json 响应,但我无法做到这一点。

$(document).ready(function() {
$.getJSON('https://www.googleapis.com/oauth2/v1/userinfo?&access_token=xxxxxxxxxxxxx&token_type=Bearer&expires_in=3600', function(data) {
  alert (c.email);
});
});

在此页面中有我的代码 http://pastie.org/3379735

希望你能帮助我。

最佳答案

什么是c.email,认为你想要data.email

$(document).ready(function() {

$.getJSON('https://www.googleapis.com/oauth2/v1/userinfo?&access_token=xxxxxxxxxxxxx&token_type=Bearer&expires_in=3600&callback=?', function(data) {

alert (data.email);

});
});

更新

正如OP在阅读文档后所说,您需要提供jsonp的回调作为路径的一部分,而不是以下形式的参数

https://oauth2-login-demo.appspot.com/oauthcallback?code={authorizationCode}

可以找到文档 here

关于javascript - getJson 解析器不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9275222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com