如何提取作为链接保存到 DOM 的 foursquare access_token 以便我可以将其用于 API 调用?

发布于 2024-11-17 05:50:08 字数 990 浏览 5 评论 0原文

代码如下所示:

    var jsonUrl = url +"&callback=?";
//  $("#getJSON").click(function(){
            $.getJSON(
                jsonUrl,
                {
    dataType: "JSONP"
  },                
                function(json){ var items = [];
                var items = JSON.parse(json);
                alert(items);


                    $("#result").html("<h3>" + result + "</h3>");



                }  
        );

也尝试过

$.ajax({

    type: 'GET',   

    url: url,
    key: $('#access_token'),
    dataType: 'jsonp',
    success: function(data){ $('.result').html(data);
        processData: false,

        alert(jQuery.data( document.access_token ));
         alert(data[0].text);},
    error: function() {
        console.log('Uh Oh!'); },
    jsonp:'onJSONPLoad'

    });

本质上,如果我在 Firebug 中并查看网络对象,我会看到状态 200

如果我单击 JSON 选项卡,我可以看到我的 access_token,但是如何提取我可以从那里使用它来进行 API 调用吗?

The code looks like:

    var jsonUrl = url +"&callback=?";
//  $("#getJSON").click(function(){
            $.getJSON(
                jsonUrl,
                {
    dataType: "JSONP"
  },                
                function(json){ var items = [];
                var items = JSON.parse(json);
                alert(items);


                    $("#result").html("<h3>" + result + "</h3>");



                }  
        );

also tried

$.ajax({

    type: 'GET',   

    url: url,
    key: $('#access_token'),
    dataType: 'jsonp',
    success: function(data){ $('.result').html(data);
        processData: false,

        alert(jQuery.data( document.access_token ));
         alert(data[0].text);},
    error: function() {
        console.log('Uh Oh!'); },
    jsonp:'onJSONPLoad'

    });

Essentially if I'm in Firebug and look at the net objects I see the status 200

If I click on the JSON tab I can see my access_token, but how do I extract it from there so I can use for API calls?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2024-11-24 05:50:08
var jsonUrl = url +"&callback=?";
var access_token;

$("#getJSON").click(function() {
    $.getJSON(jsonUrl, { dataType: "JSONP" }, function(json){ 
        ...
        access_token = json.access_token;
        ...
    });
});

// do something with your access_token ?

我理解你的问题了吗?您可以将 access_token 分配给一个变量,然后在代码中使用它执行您想要的操作,不是吗?

$.ajax({
  dataType: 'jsonp',
  jsonp: 'callback',
  url: url,
  success: function (json) {
    console.log(json.access_token);
  }
});
var jsonUrl = url +"&callback=?";
var access_token;

$("#getJSON").click(function() {
    $.getJSON(jsonUrl, { dataType: "JSONP" }, function(json){ 
        ...
        access_token = json.access_token;
        ...
    });
});

// do something with your access_token ?

Did i understand your question right? You can assign the the access_token to a variable and then do what you want with it in your code, can't you?

$.ajax({
  dataType: 'jsonp',
  jsonp: 'callback',
  url: url,
  success: function (json) {
    console.log(json.access_token);
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文