Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to extract data from gdata json. However the names of the objects have dollar signs in:

{
   "id":{
      "$t":"tag:youtube.com,2008:video:xedvi0LiZDA"
   },
   "media$group":{
      "media$category":[
         {
            "$t":"Shows",
            "label":"Shows",
            "scheme":"http:\/\/gdata.youtube.com\/schemas\/2007\/categories.cat"
         },
         {
            "$t":"6",
            "scheme":"http:\/\/gdata.youtube.com\/schemas\/2007\/releasemediums.cat"
         },
         {
            "$t":"3",
            "scheme":"http:\/\/gdata.youtube.com\/schemas\/2007\/mediatypes.cat"
         }
      ],
      "media$content":[
         {
            "url":"http:\/\/www.youtube.com\/v\/xedvi0LiZDA?version=3&f=user_uploads&app=youtube_gdata",
            "type":"application\/x-shockwave-flash",
            "medium":"video",
            "isDefault":"true",
            "expression":"full",
            "duration":204,
            "yt$format":5
         },
         {
            "url":"rtsp:\/\/v8.cache5.c.youtube.com\/CigLENy73wIaHwkwZOJCi2_nxRMYDSANFEgGUgx1c2VyX3VwbG9hZHMM\/0\/0\/0\/video.3gp",
            "type":"video\/3gpp",
            "medium":"video",
            "expression":"full",
            "duration":204,
            "yt$format":1
         },
         {
            "url":"rtsp:\/\/v6.cache7.c.youtube.com\/CigLENy73wIaHwkwZOJCi2_nxRMYESARFEgGUgx1c2VyX3VwbG9hZHMM\/0\/0\/0\/video.3gp",
            "type":"video\/3gpp",
            "medium":"video",
            "expression":"full",
            "duration":204,
            "yt$format":6
         }
      ],
      "media$credit":[
         {
            "$t":"epicnetworkmusic",
            "role":"uploader",
            "scheme":"urn:youtube",
            "yt$display":"EpicNetworkMusic",
            "yt$type":"partner"
         }
      ],
      "media$description":{
         "$t":"Our Facebook: http:\/\/on.fb.me\/oW4u8e & T-Shirts: http:\/\/bit.ly\/JSJebo\n---------------------------------------------------------------------------------------------------------------\nComing out on the 'Believe in Music Foundation' album on the 15th October\nhttp:\/\/www.facebook.com\/pages\/Believe-in-Music-Foundation\/130288053775923\n\nSystem\nFacebook: https:\/\/www.facebook.com\/systemdance\nSoundcloud: http:\/\/soundcloud.com\/systemdance\nYouTube: http:\/\/www.youtube.com\/user\/officialsystemuk\n---------------------------------------------------------------------------------------------------------------\nAll the artwork & design is owned by Mike Nesbitt\n\nDeviantArt: http:\/\/vashperado.deviantart.com\/\nTumblr: http:\/\/vashito.tumblr.com\/\nTwitter: https:\/\/twitter.com\/vashperado \n\nWallpaper Download: \nhttp:\/\/vashperado.deviantart.com\/art\/s-p-a-c-e-o-u-t-264782890\n---------------------------------------------------------------------------------------------------------------\nEpic Network:\nFacebook FanPage: http:\/\/on.fb.me\/h2ubeH\nTwitter: http:\/\/bit.ly\/i4iqZa\nGoogle+ http:\/\/goo.gl\/uO7n1\nSoundcloud: http:\/\/bit.ly\/e1Xukr\n\nTrack's title: System - Circles\n---------------------------------------------------------------------------------------------------------------\nSend demos to demo@epicnetworkrecords.com\nfor a possible release or get your track featured on ENR!\n\nWe'll get back to you if we like what we hear!\n---------------------------------------------------------------------------------------------------------------",
         "type":"plain"
      },
      "media$keywords":[

      ],
      "media$license":{
         "$t":"youtube",
         "type":"text\/html",
         "href":"http:\/\/www.youtube.com\/t\/terms"
      },
      "media$player":{
         "url":"http:\/\/www.youtube.com\/watch?v=xedvi0LiZDA&feature=youtube_gdata_player"
      },
      "media$thumbnail":[
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/default.jpg",
            "height":90,
            "width":120,
            "time":"00:01:42",
            "yt$name":"default"
         },
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/mqdefault.jpg",
            "height":180,
            "width":320,
            "yt$name":"mqdefault"
         },
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/hqdefault.jpg",
            "height":360,
            "width":480,
            "yt$name":"hqdefault"
         },
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/1.jpg",
            "height":90,
            "width":120,
            "time":"00:00:51",
            "yt$name":"start"
         },
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/2.jpg",
            "height":90,
            "width":120,
            "time":"00:01:42",
            "yt$name":"middle"
         },
         {
            "url":"http:\/\/i.ytimg.com\/vi\/xedvi0LiZDA\/3.jpg",
            "height":90,
            "width":120,
            "time":"00:02:33",
            "yt$name":"end"
         }
      ],
      "media$title":{
         "$t":"Drum & Bass - System - Circles",
         "type":"plain"
      },
      "yt$aspectRatio":{
         "$t":"widescreen"
      },
      "yt$duration":{
         "seconds":"204"
      },
      "yt$uploaded":{
         "$t":"2012-09-24T22:47:33.000Z"
      },
      "yt$uploaderId":{
         "$t":"UCvOGElQWhX8tyTxwzv1rKzg"
      },
      "yt$videoid":{
         "$t":"xedvi0LiZDA"
      }
   },
}

The Javascript I'm using is as follows:

  $.ajax({
    url: 'api/video.php',
    success: function(data) {
      //$('.result').html(data);
      alert(data.media$group.yt$videoid.$t); 
    }
  });

The error I get is: Uncaught TypeError: Cannot read property 'yt$videoid' of undefined

share|improve this question
1  
If I create an example with your JSON and media$group.yt$videoid.$t it works perfectly on FF. Which browser do you use? – devnull69 Nov 27 '12 at 10:26
2  
use the debugger or console to dump the contents of data. Maybe it is not what you think it is. The code itself looks ok. – Thilo Nov 27 '12 at 10:26
2  
I pasted your JSON fragment into the Chrome developer console, assigning it to a variable data. I pasted your expression data.media$group.yt$videoid.$t into the console. The string "xedvi0LiZDA" was echoed in response. In other words, it works for me. – Jim Blackler Nov 27 '12 at 10:27

1 Answer

up vote 0 down vote accepted

I needed to parse the json response into an object:

  var video = jQuery.parseJSON(data);
  alert(video['media$group']['yt$videoid']['$t']);  //media$group.yt$videoid.$t
share|improve this answer
Also, then the dot notation will work just fine: o.media$group.media$category[0].$t => "Shows" – Cerbrus Nov 27 '12 at 10:33
1  
You shouldn't need to use jQuery.parseJSON() if you're already using one of jQuery's Ajax methods - just set dataType : "json" and jQuery will do it automatically (even if you don't set dataType it tries to make an intelligent guess as to whether it is JSON or some other type). – nnnnnn Nov 27 '12 at 10:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.