An open API service indexing awesome lists of open source software.

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

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"
}
```