Skip to content

kimpetersend1/tweetlight

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Display your latest tweets with pure JavaScript and PHP OAuth Library.

##Usage

1 - Add the code below to your HTML, where the latest tweets should appear:

<ul id="tweets"></ul>

2 - Paste right before your page's closing </body> tag:

<script type="text/javascript" src="src/tweetlight.min.js"></script>

3 - From within a script tag or a JS file

    Tweetlight.init({
        username: 'pinceladasdaweb',    // Twitter username
        container: '#tweets',           // domNode to attach to
        count: 4,                       // Number of tweets to display
        onComplete: function(){
            console.log('Awesome APP'); // Callback to execute after fetch tweets
        }
    });

4 - In the tweets.php file, complete the [Twitter OAuth settings] (https://dev.twitter.com/docs/auth/oauth/faq)

$CONSUMER_KEY = '';
$CONSUMER_SECRET = '';
$ACCESS_TOKEN = '';
$ACCESS_TOKEN_SECRET = '';

##Important Note

It is mandatory to file cacert.pem be on the same level/directory that codebird.php file because Twitter requires [secure connections in their API] (https://dev.twitter.com/discussions/24239).

About

Display your latest tweets with pure JavaScript and PHP OAuth Library.

Resources

Stars

Watchers

Forks

Packages

No packages published