This is returning invalid JSON.
https://api.twitter.com/1.1/users/lookup.json?screen_name=unitusccu
See snippet of JSON string below.
Note “Source” element.
"statuses_count": 1958,
"lang": "en",
"status": {
"created_at": "Tue Oct 08 23:45:42 +0000 2013",
"id": 387725522739789800,
"id_str": "387725522739789824",
"text": "@cpeiffler @Rayterrill Clifford thx for the props! Ray, all our tech/online services are top notch. Check us out! https://t.co/X0DOZOefjW",
"source": "<a href="http: //www.tweetdeck.com" rel="nofollow">TweetDeck</a>",
"truncated": false,
"in_reply_to_status_id": 387639127601983500,
"in_reply_to_status_id_str": "387639127601983490",
"in_reply_to_user_id": 172028267,
"in_reply_to_user_id_str": "172028267",
"in_reply_to_screen_name": "cpeiffler",
"geo": null,
"coordinates": null,
"place": null,
If you escape the URL like so, it’s valid.
"source": "<a href=\"http: //www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>",
Is this is a known bug or do I have to work around this??