I am using @anywhere twitter API and I want to post a tweet using tweet box. I have done following steps:
I registered app and Consumer Key is as following. I left callback URL to empty.
- I have set Call Back URL while registering App is blank
Consumer Key: 94zA1u34whtdXz91Kjymgw
<script src="http://platform.twitter.com/anywhere.js?id=94zA1u34whtdXz91Kjymgw&v=1" type="text/javascript"> </script> <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.5.1.js"> </script>
and I am creating tweet box as following,
$(document).ready(function () {
$('#shareonTwitter').click(function (e) {
alert('hello1234567');
twttr.anywhere.config({ callbackURL: "http://localhost:1461/ShareonTwitter.html" });
twttr.anywhere(function (T) {
T("#tbox").tweetBox({
height: 100,
width: 400,
defaultContent: "Hi how r u ?"
});
});
});
});
I am getting error after authentication Technical Problem. I am not able to tweet. Any help would be appreciated