Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6355419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:45:43+00:00 2026-05-24T22:45:43+00:00

I am trying to create an IM bot and I haven’t been able to

  • 0

I am trying to create an IM bot and I haven’t been able to find the necessary resources.


UPDATE

There was an issue with Imified making gtalk bots not appear online (and not responding), it works now so I’m closing this.

This tutorial does work.


Original question not deleted for reference purposes

First, I did find a great tutorial on How to Write Your Own IM Bot, but it uses the IMified platform which looks dead (last blog post in septembre 2008, no feedback on their help forum, …).

I did manage to create a beta bot using their service but as I can see in their help forum, it will never be online.

So, any one managed to do it?

Notes

I’m looking for something that would be:

  • Free
  • Works with PHP* or some free hosting solution (like IMified but that works)
  • Works for Google Talk (I don’t really care about the other)

Of course, do post answers about any solution that doesn’t fit these criteria, it might help.

*I have a Linux hosting plan on GoDaddy

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:45:43+00:00Added an answer on May 24, 2026 at 10:45 pm

    Taken from the tutorial in case it ever disappears:

    Step 1: Go to imified.com and request an invite. You should
    also give your bot a decent name because you can have just one bot per
    email address.

    Step 2: An email with a secret key should arrive in your Inbox the
    next minute. Copy that key to the clipboard and go here to redeem that
    key.

    Step 3: Now it’s time to create a bot which is actually a simple
    script that resides on your public web server. It could be in PHP,
    Perl, Python or any other language. More here.

    This is the source of the PHP script I wrote for the labnol IM bot –
    pretty self explanatory – it reads your message, gets the relevant
    data from Google Suggest and echoes it back to the IM window.

    <?php   // Get all the related keywords from Google Suggest
        $u = "http://google.com/complete/search?output=toolbar";   $u = $u . "&q=" . $_REQUEST['msg'];
    
        // Using the curl library since dreamhost doesn't allow fopen
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $u);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    
        $xml = simplexml_load_string(curl_exec($ch));
        curl_close($ch);
    
        // Parse the keywords and echo them out to the IM window
        $result = $xml->xpath('//@data');
        while (list($key, $value) = each($result))
        {
            echo $value ."<br>";
        }
    ?>
    

    Step 4: Once your script is ready, put
    it somewhere on your web server and copy the full URI to the
    clipboard.

    Now login to your imified account, paste the script URL and add that
    im bot your friends list. That’s it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying create a bot which automatically likes Facebook posts. Using Mechanize I can
I'm trying to create a simple web bot which will access a certain page,
I am trying to create an IRC Bot, below is the code, however, when
I am trying create a layout. There are several inner layouts that should like
I've been trying create this simple ish to-do list web app using JavaScript &
I'm trying to create a heatmap for a planetwars bot which indicates which influence
I am trying create a delegate representation of constructor by emitting a Dynamic Method,
Ok so I am trying create a login script, here I am using PHP5
Trying to create a black line in my view to separate text blocks but
Trying to create a facebook app just to learn and coming across a strange

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.