The JSON Tweet object I am getting back looks like :
text=‘actual Italian poster for …’,
isTruncated=false,
retweetedStatus=StatusJSONImpl{},
userMentionEntities=[UserMentionEntityJSONImpl{name=‘The NYC Film Chick’, screenName=‘TheNYCFilmChick’, id=460361029}],
urlEntities=[],
hashtagEntities=[HashtagEntityJSONImpl
…
As you can see, urlEntities, hashtagEntities etc are NOT under an “entities” object.
Earlier it used to list individual entities like Hashtags, user_mentions etc under an “entities” object, so it used to look like:
“text”: “Four more years. http://t.co/bAJE6Vom”,
“entities”: {
“hashtags”: [],
“symbols”: [],
“urls”: [],
…
The documentation still looks the same, https://dev.twitter.com/docs/entities. Did something change?
-Rob