It's been written to manage your tweets, you decide who should or should not use your API, so unauthorised requests won't work.
Make it work in one step:
username: [email protected]
password: demo123
Once you've added a twitter account, you can now make calls as normal via the api or the Jquery plugin with
<script src="http://www.tweecool.com/demo/tweecool.min.js"></script>
The demo is limited to 3 new requests only.
TweeCool CMS Requires
TweeCool provides a Jquery Plugin and an API, the system is easy to use, no programming skills needed. We use a smart cache system to speed up your requests. Zero downtime guarantee, we are constantly working to improve this project.
Please contact us if you've got any suggestions.
Copy and paste the following script between <head> and </head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="[YOUR_API_URL]"></script> <script> $(document).ready(function() { $('#tweecool').tweecool({ //settings username : 'tweecool', limit : 5 }); }); </script>
Copy and paste the following script between <body> and </body>
<div id="tweecool"></div>
IE 8 & 9 compatibilities
Add the following script, just after the Jquery library (jquery.min.js):
<!--[if lte IE 9]> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-ajaxtransport-xdomainrequest/1.0.2/jquery.xdomainrequest.min.js"></script> <![endif]-->
IE 8 & 9 - Protocols (HTTP vs HTTPS)
Please make sure that you are using the same protocols. Therefore, if your website is in HTTP make sure the request link in the tweecool JS file is in HTTP as well.