I am trying to build a simple website with just a tweet box (and some hover cards for fun) so that I can tweet “via MaloneHedges”. I can’t seem to find the API key so I am using the consumer key. (Is that right?) And I have added my tumblr which will have it on the home page (malonetweetbox.tumblr.com) and i have tried to add the customization page for it (tumblr.com/customize/malonetweetbox) but it is still not working.
Here is the code: (read full version to see all of the code!)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://platform.twitter.com/anywhere.js?id=09K9TIqiG9uvJgJjD2k9kw&v=1" type="text/javascript">
</script>
<script type="text/javascript">
twttr.anywhere(function (T) {
T.hovercards();
});
</script>
<title>Malone's Tweet Box!</title>
</head>
<body bgcolor="White">
<p>
My Family's Twitter Accounts:
</p>
<ul>
<li>@malonehedges</li>
<li>@jameshedges</li>
<li>@evanshedges</li>
<li>@lundyhedg</li>
</ul>
<div id="tweetbox"></div>
<script type="text/javascript">
twttr.anywhere(function (T) {
T("#tweetbox").tweetBox({
height: 40,
width: 550,
defaultContent: "Enter your text here master",
label: "Tweet for my lord!"
});
});
</script>
</body>
</html>
P.S. I am using a Macbook Pro with Safari and Lion