Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blixt/twocents
A simple commenting service
https://github.com/blixt/twocents
Last synced: about 1 month ago
JSON representation
A simple commenting service
- Host: GitHub
- URL: https://github.com/blixt/twocents
- Owner: blixt
- Created: 2011-02-25T17:17:11.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-02-25T17:18:18.000Z (over 13 years ago)
- Last Synced: 2024-04-21T10:12:36.066Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Two Cents: A simple commenting service
## Information
Two Cents is a very simple service that simply lets people add and get comments
for a certain path (arbitrary string).Used for .
## Examples
To add a comment, request:
twocents.php/put?path="home"&name="blixt"&message="Hello+World!"
To get comments, request:
twocents.php/get?path="home"
The response could look something like this (indented for readability):
{
"status": "success",
"response": [
{
"id": "1",
"added": "1292162356",
"name": "blixt",
"message": "Hello World!"
}
]
}## MIT license
This project is licensed under an [MIT license][].
Copyright © 2011 Andreas Blixt ()
[MIT license]: http://www.opensource.org/licenses/mit-license.php