简体   繁体   中英

Cannot Read Property Javascript

Cannot grab the follower count from the following URL. Shows up as blank. Am I grabbing the right parameters?

https://developer.foursquare.com/docs/explore#req=pages/search%3Fname%3DNintendo

function foursquareFriends(url) {

  var responses = UrlFetchApp.fetch(url);
  var json = responses.getContentText();
  var data = JSON.parse(json);
  var likes = data.response.results.followers.count;
  return likes;

 }

You should do this (using this )

data.response.results[0].followers.count;

在此输入图像描述

(And of course if you have more than 1 value - you should iterate).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM