LiveJournal Protocol

Introduction

The following information is intended for developers interested in writing their own LiveJournal clients to talk to the LiveJournal server. End users do not need to know any of this, and are probably better off not knowing it.   ;)

Prerequisites

Before reading this document, it is assumed you know at least some basics about network programming, at least the whole idea of opening sockets and reading/writing to them. If not, this might be kinda confusing.

It's really HTTP

If you already know the HTTP protocol, this is going to be really easy. For those of you who don't know, HTTP is the protocol that web browsers talk to web servers with. For simplicity of writing the LiveJournal server, we've decided to just use HTTP as our protocol transport. This way, we can also go through proxies at schools and corporations really easily and without drawing any attention.

The Basics

Basically, sending a LiveJournal request is like this:

  1. Open a socket to www.livejournal.com on port 80
  2. Send an HTTP POST request, containing the request variables (mode, user, password, etc...)
  3. Read the socket to get the response. The response is really easy to parse.
  4. Close the socket. Do any approriate action based on the server's response.

Encoding the request

As mentioned previously, the request is sent as an HTTP POST request. Open your socket, and send a request looking like:

    POST /interface/flat HTTP/1.0 Host: www.livejournal.com Content-type: application/x-www-form-urlencoded Content-length: 34 mode=login&user=test&password=test
As you can pretty easily see, the variables TO the webserver are encoded in the form var1=val1&var2=val2&..... Note that you must quote all values or the values can interfere with the encoding form. For example, what if somebody's password was "blah&=2+&something=yeah". It's an ugly password, sure, but somebody may have it. And if they do, it'll mess up the pretty format of the encoding format. So, here are the rules on how to encode values:
  • Leave all values from a-z, A-Z, and 0-9 alone. These are fine.
  • Convert spaces to a + sign.
  • Convert everything else to %hh where hh is the hex representation of the character's ASCII value.
So, for example, the phrase "I'm going to the mall" could encoded as "I%27m+going+to+the+mall". There should be CGI libraries for all major languages which do this encoding for you. If not, it isn't that hard to do it yourself.

After you construct the big long ugly string of variables/values, find the length of it and send it in the Content-length field, as in the example above. Then send a blank line, then the big long ugly string.

Note about line endings: Please note that the end of lines should be a carriage return (ASCII 13, 0x0D) and then a newline (ASCII 10, 0x0A). In Perl, C/C++ or Java this is "\r\n". In Basic, this is Chr(13) & Chr(10). Sending just the newline may work too, but it's generally better to send both.

Here is a typical response from the web server after sending your request:

    HTTP/1.1 200 OK Date: Sat, 23 Oct 1999 21:32:35 GMT Server: Apache/1.3.4 (Unix) Connection: close Content-Type: text/plain name Mr. Test Account success OK message Hello Test Account!
The top stuff is headers from the HTTP request. There may be a lot of other stuff in there too. First thing to do is make sure the first lines ends with "200 OK". If the first line does not end with 200 OK, tell the user that an error occured on the server and that it's not their fault. If you see 200 OK at the end, proceed with parsing the output. The format is as follows:
    variable value someothervariable someothervalue
The ordering of the variable/value pairs does not matter. As you read them in, read them into a hash structure. (associative array, dictionary, collection... whatever it's called in your language. Just a data structure that links one string variable key to another string variable value.)

After your hash is loaded, proceed with the logic of reporting errors if needed, as governed by the variables and logic above.

Protocol modes

Of course, knowing all the above isn't useful unless you actually know what operations the server supports....

Protocol Mode Documentation

Proxies

As a final feature, once you get that stuff working, is to implement support for HTTP proxies. This is very easy. Give the user a checkbox if they want to use a proxy or not, and if so, ask the proxy host and proxy port. Now, if they selected to use a proxy, do not connect to www.livejournal.com and port 80, but instead connect to their proxy host on whatever proxy port they specified. The rest is basically the same, except for one difference. Instead of doing:

    POST /interface/flat HTTP/1.0

You would do...

    POST http://www.livejournal.com/interface/flat HTTP/1.0

That's it! That line tells the proxy what host it needs to connect to in order to make the real request. The rest of the HTTP you should leave just as you did before. This should be all you need to know to make a LiveJournal client.

Need more help?

If anything is unclear, join the [info]lj_clients community, where all the client authors hang out.

Create an Account
Forgot your login?
Login w/ OpenID
English • Español • Deutsch • Русский…