Twitter follower list building

allkit

Newbie
Joined
Nov 23, 2009
Messages
3
Reaction score
6
I am building this script that can help you building follower for your website. It like building email list went you offer freebie... but with this you gain follower.

try take a test here... bitly / dgpLTV
 
I have problem to put my code here. I have problem putting twitter "Anywhere" url at script tag.

Change below code with your need.
1) Get twitter "APIkey" at twitter . Try learn to get Twitter Anywhere url and put it at this html.
2) Change "USERNAME" with your twitter username.
3) Change "downloadURL" to your download or info page.
4) Put "followme-button" span tag anywhere you like for follow button to appear.

HTML:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>twittertips</title>
<script src="twitter anywhere url here" type="text/javascript"></script>
</head>
<body>
<span id="followme-button"></span>
<script type="text/javascript">

twttr.anywhere(function (T) {
//follow button
T('#followme-button').followButton("USERNAME");

T.bind("authComplete", function (e, user) {
// triggered when auth completed successfully
window.location = "downloadURL"
});
});

</script>
</body>
</html>

I am just thought that marketer offer freebie to download to get email list from their visitor. but I am using this to have follower because after your visitor following you he will be direct to download page or to information page.
This is just simple script but you will need Twitter API. Take a test here if you like bitly / dgpLTV
 
Back
Top