function get_w_params() {
  // Make a GET request and log the returned content.
  var response = UrlFetchApp.fetch('http://site.api.espn.com/apis/site/v2/sports/football/nfl/teams/34');
  Logger.log(response.getContentText());
}