JSFiddle - React, Tailwind, and code Playground

by rodrigonery

HTML

<div id="weather-temp"></div>

JavaScript

$.ajax({
    url: "https://api.twitter.com/1.1/search/tweets.json",
    dataType: "jsonp",
    data: "q=%23fml",
    beforeSend: function (xhr) { 
        xhr.setRequestHeader ("Authorization", "Rodrigo Nery rodrigon3ry"); 
    },
    success: function (json) {
        alert(json); 
    }
});