Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pelletier/statuspy
Twitter-clone for fun and geeks.
https://github.com/pelletier/statuspy
Last synced: 25 days ago
JSON representation
Twitter-clone for fun and geeks.
- Host: GitHub
- URL: https://github.com/pelletier/statuspy
- Owner: pelletier
- Created: 2010-09-25T13:29:30.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2010-10-08T12:27:09.000Z (about 14 years ago)
- Last Synced: 2024-05-08T17:38:56.173Z (6 months ago)
- Language: Python
- Homepage: http://statuspy.sourceinhabitants.com/
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
========
Statuspy
========Web API
=======Implemented URIs
----------------You must prepend /api_version/ to all URIs. The version described here is 1.0.
URIs marked with a * must be used by an authenticated user.
The user name used for authentication is `user_name`. The password must be
provided in the `password` request argument.``/`` - GET
Returns a JSON-encoded welcome message.``/`` - POST
Create a new user. You must provide:
- user_name
- password``/user_name/`` - GET
Returns a JSON-encoded hash containing the keys:
- user_name
- uid``/user_name/followers/`` - GET
Returns a JSON-encoded list of user names, in a hash with containing a
single key: followers.``/user_name/following/`` - GET
Returns a JSON-encoded list of users who user_name follows.``/user_name/following/`` - POST *
Start to follow a user. You must provide the following payload:
- user_name``/user_name/following/other_user/delete`` - GET *
user_name stops following other_user.To be implemented
-----------------None