I am using oembed in the Twitter API to embed a tweet widget. It gets the JSON response just fine, but it shows the tweet in text only, not the embedded widget response. The javascript that Twitter sends is not firing.
$(document).ready(function()
{$.getJSON("https://api.twitter.com/1/statuses/oembed.json?id=133640144317198338&align=center&callback=?", function(data)
{$('#target').html(data.html);
});
});
then for the html:
<body >
<div id="target"></div>
</body>
=================================================================
Response comes formatted in text only version, instead of the widget.