I have implemented Tweet Box in my site, as well as a Connect with Twitter button, but once I click the tweet button or connect button and then click connect on the popup screen I get the error message of:
Something is technically wrong. Thanks for noticing—we’re going to fix it up and have things back to normal soon.
How do I fix this?
The code is as follows:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script src="http://platform.twitter.com/anywhere.js?id=yRWHylXjnyWMvjvnRgFXDA&v=1" type="text/javascript"></script>
</head>
<body>
<table width="405" height="596" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div id="example-custom"></div>
<script type="text/javascript">
twttr.anywhere(function (T) {
T("#example-custom").tweetBox({
'counter' : true,
'height' : 100,
'width' : 400,
'label' : "What have you accomplished today?",
'defaultContent' : "I ",
});
});
</script></td>
</tr>
<tr>
<td> <span id="twitter-connect-placeholder"></span>
<script type="text/javascript">
twttr.anywhere(function (T) {
var currentUser,
screenName,
profileImage,
profileImageTag;
if (T.isConnected()) {
currentUser = T.currentUser;
screenName = currentUser.data('screen_name');
profileImage = currentUser.data('profile_image_url');
profileImageTag = "<img src='" + profileImage + "'/>";
$('#twitter-connect-placeholder').append("Logged in as " + profileImageTag + " " + screenName);
} else {
T("#twitter-connect-placeholder").connectButton();
};
});
</script></td>
</tr>
</table>
</body>
</html>