Last active
November 1, 2022 02:35
-
-
Save levymetal/5083696 to your computer and use it in GitHub Desktop.
Example of how to call use the php twitter cache available @ https://github.com/levymetal/php-twitter-cache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.getJSON('/resources/twitter_cache.php', function(data) { | |
$.each(data, function(i) { | |
console.log( data[i] ); | |
// do something with tweet | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment