abraham / twitteroauth无法在entities-> urls中看到[unwound]对象

i am using abraham/twitteroauth for twitter feed. Everything works normal as expected, just cannot get [unwound] object as explained on twitter for developers website.

object(stdClass)#7 (25) {

  ["entities"]=>
  object(stdClass)#16 (4) {

    ["urls"]=>
    array(1) {
      [0]=>
      object(stdClass)#17 (4) {
        ["url"]=>
        string(23) "link"
        ["expanded_url"]=>
        string(73) "https://www.invisionapp.com/blog/7-ted-talks-every-designer-should-watch/"
        ["display_url"]=>
        string(33) "invisionapp.com/blog/7-ted-tal…"
        ["indices"]=>
        array(2) {
          [0]=>
          int(46)
          [1]=>
          int(69)
        }
      }
    }
  }

In Twitter for developers website i see unwound. But in my var_dump i cant find.

{"urls": [
      {
        "url": "link",
        "expanded_url": "link",
        "display_url": "link",
        "unwound": {
          "url": "https://www.youtube.com/watch?v=oHg5SJYRHA0",
          "status": 200,
          "title": "RickRoll'D",
          "description": "http://www.facebook.com/rickroll548 As long as trolls are still trolling, the Rick will never stop rolling."
        },
        "indices": [
          62,
          85
        ]
      }
    ]
}

Maybe have some ideas ? Appreciate for help!:)