Posts Tagged: Twitter


27
Nov 09

Increase Your Twitter Following Using Your WordPress Blog

twitter_bird

Download TwitPop Now

TwitPop is a WordPress plugin I wrote with one goal…To make you more popular on Twitter. There are sites that spring up from time to time claiming to get you more followers on Twitter if you follow X amount of people on the follow train. Well, now you can create your own Twitter train on your wordpress blog and really get more followers.

The best part is, you add your username in the admin panel and EVERYONE FOLLOWS YOU! Think of the possibilities… You could be a Twitlebrity.

To add to the excitement, everyone that uses your TwitPop plugin will Tweet a link back to your blog. This promotes your blog as well as your Twitter account. Check out how TwitPop works below.

Instructions

Log in to your Twitter account below.  You will automatically follow the people that have visited this page before you (no more than 20).

Then, your Twitter username will be added to the list and you will be followed by the next 20 people to use this plugin.

 

Download TwitPop Now


6
Oct 09

TweetPress Now Supported By Twittelator Pro

For many of you this is old new. But since it’s latest release, Twittelator Pro has supported TweetPress as one of the options for Photo Posting. Here are the steps to configure Twittelator Pro:

  1. First, make sure you have TweetPress installed on your WordPress blog by following the installation instructions here
  2. Tap the Settings tab
  3. Select WordPress from the dropdown under Choose Photo Service
  4. Tap Other Services (you should see the WordPress logo) and then tap Tweetpress for iPhone
  5. Enter in your WordPress credentials
    1. Site Link: The URL of the hompage of your wordpress blog
    2. Username – your wordpress username
    3. Password – your wordpress password

  6. Tap Done

You should now be good to go. Any time you choose to post a photo to your Twitter stream, it will use your TweetPress plugin on your WordPress blog. Please let me know if you encounter any issues or have suggestions for Tweetpress.

I have been in contact with developers of other popular Twitter clients and hope to get Tweetpress integrated in them soon.


18
Sep 09

Post Photos To Twitter From Your WordPress Blog With TweetPress

twit

That’s right. With the latest release of TweetPress (version 1.1.1), you can post photos directly to Twitter from your WordPress blog’s gallery page. Here are the steps to do it.

  1. Navigate to the TweetPress admin Settings > TweetPress
  2. Enter your Twitter username and password
  3. Press the Save Twitter Settings button
    1. TweetPress will verify your username and password with Twitter
    2. If they are incorrect, it will let you know and you must re enter them
  4. Navigate to your gallery page
  5. You should now see a form that has a text box and an upload button
  6. Click browse to find an image on your computer to post
  7. Enter your Tweet in the box
  8. Click Post

It’s very quick and easy. If you have any suggestions for TweetPress please contact me, or leave comments in this post.


10
Sep 09

TweetPress coming soon to a Twitter Client Near You

TweetPress is the WordPress plugin that gives you total control and ownership of the photos you post to Twitter, sending your traffic back to your own blog, instead of a third party site

I just finished development of this WordPress plugin and Andrew Stone of Twittelator has integrated it into his latest version of Twittelator Pro.  As of this post, that version is still in review, so you will have to wait until it is approved to make use of TweetPress.

I have some other very big plans for future releases of TweetPress and if you have any feature requests, feel free to drop me a line.  I will do a post as soon as the latest version of Twittelator is approved and demo how it integrates with TweetPress.


28
Jul 09

Creating A Twitter Client In Objective-C Client Part 2

This is part 2 in our series about creating a Twitter client in Objective-C.  In case you missed it, here is a link to part 1 of this series.

In the last tutorial I showed you how to retrieve data from Twitter and display the XML in the Console.  Today, we will be focusing on sending messages to Twitter via POST.  We will be implementing the code to update our Twitter status.  So let’s just dig right in.

1. Updating The TwitterRequest Header File

Open up TwitterRequest.h and add the following code (Click the image to enlarge)

screenshot_16

We have added two properties.  The first isPost will be true when we are calling a method that requires a POST to Twitter.  This will be methods such as update_status, follow, etc… Next, the variable requestBody will hold the POST arguments that will be sent to Twitter.  These will be things such as status text or friend id.

Finally, we will be adding a method called statuses_update.  The reason I named it this is because that is what the method is called in the Twitter API. Like our friends_timeline method, it takes a delegate and selector to call when the request is complete.

Important: I didn’t highlight this in the screenshot but make sure you change theRequest from an NSURLRequest to NSMutableURLRequest.  It will give us some additional methods to set up the POST.

2. Updating The Twitter Request Class

Open up TwitterRequest.m and add the following code (Click the image to enlarge):

screenshot_17

I’ll start by explaining the status_update method.  We first set the global isPost property to true.  This will tell the request method to make a POST.  The next 2 lines set the callback stuff as we did before.  The only new line here is setting the requestBody variable.  This is just a string that looks like “status=new twitter status”.

The addition to the request method is what will allow us to POST to Twitter.  First, we check if the isPost property is set.  This will be true if request is called from our status_update method.  Next, we call the setHTTPMethod of the request to POST. This is pretty obvious.

The following line let’s Twitter know the type of data that we are sending to it.  Next, we call setHTTPBody to set the body of the request.  At some point we will want to URL Encode this string, but that will be for a different tutorial.  Just don’t use any special characters such as & and = in your update to Twitter right now.  All that is happening on this line is we convert the string to NSData using the dataUsingEncoding method of NSString and set it to the HTTPBody.

The last line just sets the Content-Length property to the length of our string.  This is needed to correctly do a POST.

3. Calling The statuses_update Method To Update Your Twitter Status

Open up ApplicationDelegate.m and add the following code (click the image to enlarge):

screenshot_03

One thing to notice here is I commented out the line to get the friends timeline.  This is because having both requests running at the same time with the same request object could cause conflicts.  The best way to approch this to create an entirly new TwitterRequest object.  I just wanted to keep it short.

This is pretty straight forward.  We call the statuses_update method the same way we called the friends_timeline method except pass in the update text.  The information received back from Twitter will look something like this:

screenshot_01

It’s basically all of your personal profile information.

That’s it for today.  If you have any comments or questions, feel free to leave them in the comments of this post or write me on Twitter.  You can also download the source for this version below.

Twitter Mac Client Tutorial 2 – Source

Happy Coding!


6
Apr 09

Increasing Your Blog Traffic Using Twitter Trends

twitter_trends

Twitter Trends are a very interesting part of Twitter.  They are basically the most typed keywords or hashtags on twitter for a given day. Some examples might be #musicmonday or macHeist.  These are fun and all but how can you use them to get traffic to my website/blog…

Find Trends That Refer To Articles People Are Linking To?

Well, often times trends refer to words associated with website articles, videos, images, etc… For example, the other day, the word mashable was trending on Twitter.  This was because Mashable.com had just put out an article on twitter trends.  Since people were talking about and more importantly linking to this article, the word mashtable was trending…Naturally, this article got quite a bit of traffic.

Post a Comment On The Article

So, I commented on the article leaving a link to my blog.  That day, I got ~50 extra uniques to my blog! You can do the same by closely following the trends. Make sure you read the article and are not just spamming the comments section.  Many articles use blog systems (such as WordPress) that allow you to link to your website/blog in your commentsl.  Post a comment that contributes to the discussion and I guaruntee it will generate more traffic to your website/blog. Again, don’t be a spammer, contribute something to the discussion…

Be Prompt (comment early)

The sooner you comment on the article, the more traffic it will generate to your site. In the above example, I was like the 15th or 16th to commenter.  Imagine if I had been the first…

Although this method isn’t perfect, it’s a sure fire way to generate some quick traffic for your blog/website. Do this every day, and you could be huge!


31
Mar 09

WordPress Plugin To Increase Twitter Popularity

twitterpluswordpress

If there are two things I love on the intenets, they are WordPress and Twitter.  Recently there have been many plugins developed to integrate the two.  Mainly, updating your Twitter from your blog or vice-versa.  But the question is, do these benefit one another?

Does your Twitter send traffic to your WordPress blog or your WordPress blog get you more followers? Maybe if you are @kevinrose but in my opinion, not really…

I’m currently developing a plugin that will incredibly benenfit your Twitter following using your WordPress blog.  It’s called TwitPop and should be available shortly for download.  So be sure to subscribe to the RSS feed and check back soon.


17
Feb 09

How to Connect Facebook To Twitter

With the growing popularity of both Twitter and Facebook, one could obviously see a need to link them together.  Whether you primarily use Twitter or Facebook, this tutorial will show you step by step, how to update your Facebook status by posting to your Twitter account. 

So, how can you update your Facebook status with a text message? Well, Twitter offers this great functionality that allows you to post a “Tweet” via text message.  If you combine this with the Twitter app that Facebook offers, you can now update your Facebook and Twitter status simultaneously with one text message (no internet required).

What you will need:

  • Twitter Account
  • Facebook Account
  • Cell Phone Capable of Sending Text Messages

 

Signing Up For Twitter

The first step is to sign up for a Twitter account if you don’t already have one.  Head on over to http://twitter.com/signup.

Twitter

Setting Up Text Message Updates On Twitter

You first need to tell Twitter that you want to post from your phone.  Start by clicking on Settings in the top right corner of your Twitter page.

Settings

 

Now, select the Devices tab

picture-13

 

Enter in your phone number with a “+” in front of it, followed by the country code.  So for US phone numbers, it’s +1… Look at the image below for an example.

 

picture-3

 

Twitter will then send your phone a text message containing a unique code.  Once you get it, enter it in the box. Now you are able to update your Twitter status by sending a text message to 40404.  Whatever you send to this number will be posted to Twitter.

Connecting Facebook to Twitter

Now, you simply need to install the Twitter application on your Facebook account.  Log in to Facebook and go to Twitter’s application. You can find it by clicking here or searching for “Twitter” in the search bar. Once on Twitter’s page click “Go to Application”

picture-14

It will ask you if you want to allow access to the Twitter application on Facebook.  Click “Allow”

picture-31

Now it will ask you to enter your Twitter user name and password.  Enter it in and click “Log In”

picture-4

Now, click on “Allow Twitter To Update Your Facebook Status”

picture-5

The next screen will confirm.   Click “Allow” and you are good to go!

 

There you have it! It sounds a little complicated, but trust me, updating your Facebook status via text message is very handy.  You don’t even have to look at your Twitter account every again (although you should because Twitter is rad).  If you have any questions or comments, feel free to leave them in the comments section of this post.