https://github.com/matryer/infoshare
Code for infoShare workshop 19 May 2016
https://github.com/matryer/infoshare
Last synced: about 2 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-06T13:42:47.000Z (almost 9 years ago)
- Last Synced: 2024-05-02T01:09:25.655Z (12 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- 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/commentsReading 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"
}
```