API DOCUMENTATION
  
OAuth 1.0 Endpoints

 

Member API

 

Public API

 

Resources
Status

A user's status

URL

https://api.pwned.com/me/status

REQUEST METHODS

POST

RETURNED FORMATS

json

REQUIREMENTS

Valid OAuth Token

PUBLISH PARAMETERS

  • Required
    • status
      • String Length: Be reasonable
      • Text of the user's status to be updated.

  • Optional
    • link
      • String Length: Be reasonable
      • Link to external site, if applicable.
  • Returns
    • json object of last update
    • Returns an status element, which either is "success" or "fail"

	
{
  "status":[
    {
      "id":"12344",
      "feed":" I can't wait for Halloween! ",
      "timestamp":"2010-08-23 00:06:29",
      "status":"success"
    }
  ]
}

	

REQUEST PARAMETERS

  • Optional
    • limit
      • all
        • Returns all status updates
      • Numeric value
        • Returns the specified number of status updates
      • no value
        • Returns the last 50 status updates

RETURNED VALUE

{
  "status":[
    {
      "id":"12345",
      "feed":" is currently playing Netflix on Xbox 360 http:\/\/pwned.com\/pwned",
      "timestamp":"2010-08-22 23:39:44"
    },
    {
      "id":"12346",
      "feed":" Test Oauth Update Method http:\/\/pwned.com",
      "timestamp":"2010-08-21 20:02:21"
    },
    {
      "id":"12347",
      "feed":" has added a new picture to their album http:\/\/pwned.com\/fulldisplay\/picture\/51413\/pwned",
      "timestamp":"2010-08-21 18:45:15"
    },
    {
      "id":"12348",
      "feed":" is currently playing Netflix on Xbox 360 http:\/\/pwned.com\/pwned",
      "timestamp":"2010-08-17 16:28:44"
    },
    {
      "id":"12349",
      "feed":" is currently playing Modern Warfare 2 on Xbox 360 http:\/\/pwned.com\/pwned",
      "timestamp":"2010-08-14 23:16:49"
    }
  ]
}