There was an error while loading. Please reload this page.
To create a plain-text note, such as a status update, a blog post, or a Tweet, POST an activity to the user's feed (/api/user/fred/feed) like so:
/api/user/fred/feed
{ "verb": "post" "object": { "objectType": "note", "content": "Hello, World!" } }
The content can be of any length. It can include HTML5.
{ "verb": "post" "object": { "objectType": "note", "content": "<b>Hello</b>, World!" } }
"Dangerous" parts of the HTML will be scrubbed. This includes any JavaScript.
{ "verb": "post" "object": { "objectType": "note", "content": "Hello, World! <script>alert('gotcha!')</script>" } }