Skip to content

Instantly share code, notes, and snippets.

View conoro's full-sized avatar

Conor O'Neill conoro

View GitHub Profile
@conoro
conoro / gist:997214
Created May 28, 2011 20:31
Follow User
<user>
<email> #email_address </email>
<password>#password</password>
</user>
@conoro
conoro / gist:997215
Created May 28, 2011 20:32
User Follow Response
<?xml version="1.0" encoding="utf-8" ?>
<result>
<status>
OK
</status>
<message>
Now following user N
</message>
</result>
@conoro
conoro / gist:997217
Created May 28, 2011 20:33
User Unfollow Response
<?xml version="1.0" encoding="utf-8" ?>
<result>
<status>
OK
</status>
<message>
Stopped following 16
</message>
</result>
@conoro
conoro / gist:997227
Created May 28, 2011 20:54
Products
<products>
<count>7</count>
<product>
<item>Item Name</item>
<avg_rating>4.5</avg_rating>
<reviews_count>3</reviews_count>
<itemurl>http://example.com/item.html</itemurl>
</product>
<product>
...
@conoro
conoro / gist:997229
Created May 28, 2011 20:56
User Identity
<review>
<user_name> #user_name </user_name>
<email_address> #email_address </email_address>
<mobile_no> #mobile_no </email_address>
<password> #password </password>
</review>
@conoro
conoro / gist:997230
Created May 28, 2011 20:57
OK Created
<result>
<status>OK_CREATED</status>
</result>
@conoro
conoro / gist:997231
Created May 28, 2011 20:58
Ok Existing
<result>
<status>OK_EXISTING</status>
</result>
@conoro
conoro / gist:997232
Created May 28, 2011 20:58
Error Response
<result>
<status>ERROR</status>
<message>The credentials supplied were incorrect or the email address supplied was already in use</message>
</result>
@conoro
conoro / gist:997687
Created May 29, 2011 11:54
Delete Review
<review>
<once>#number</once>
<hash>#hash</hash>
<review_id> #review </review_id>
</review>
@conoro
conoro / gist:997691
Created May 29, 2011 11:56
Delete Response
<result>
<status>OK</status>
</result>
<result>
<status>ERROR_AUTH</status>
<message>Authentication or permissions error</message>
</result>
<result>