https://github.com/matryer/infoshare
Code for infoShare workshop 19 May 2016
https://github.com/matryer/infoshare
Last synced: 5 months ago
JSON representation
Code for infoShare workshop 19 May 2016
- Host: GitHub
- URL: https://github.com/matryer/infoshare
- Owner: matryer
- Created: 2016-05-19T05:54:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-06T13:42:47.000Z (over 9 years ago)
- Last Synced: 2025-06-22T13:01:45.619Z (5 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# infoshare
Code for infoShare workshop 19 May 2016
* We built a comments API
* Deployed it to App Engine
* http://infoshare-api.appspot.com/comments
Reading comments:
```
GET /comments?url=https://...
[
{
"body": "This is my comment",
"author": "John"
},
{
"body": "This is my comment",
"author": "John"
},
{
"body": "This is my comment",
"author": "John"
}
]
```
To add a comment:
```
POST /comments
{
"url": "https://...",
"body": "This is my comment",
"author": "John"
}
```