A Message record contains contains an individual entry from an Ohloh account "journal".
login of the Ohloh account that generated this message. The uri attribute contains a link to the account itself. Note that the login is not the same as the account name. The login is used when you wish to tag a message with a particular account.uri attribute is a pointer to account avatar image.<tags> element contains a collection of zero or more <account> and/or <project> elements, as defined below.uri attribute is a link to the Ohloh account itself.uri attribute is a link to the Ohloh project itself.To get a single message:
GET http://www.ohloh.net/accounts/{account_id}/messages/{message_id}.xml
Note that you must correctly specify both the account_id of the message author as well as the message_id.
To get a paginated list of messages created by a single account:
GET http://www.ohloh.net/accounts/{account_id}/messages.xml
To get a paginated list of message tagged with a particular project:
GET http://www.ohloh.net/projects/{project_id}/messages.xml
The messages will be sorted with newest messages first.
If you provide OAuth credentials, you can post a new message on a user's behalf:
POST http://www.ohloh.net/accounts/me/messages.xml
Your POST must contain a form parameter called message[body] which contains the text of the new message. Messages are limited to 400 characters.