https://github.com/binroot/quotester-appengine
Backend server code for Quotester Android app using Google AppEngine API
https://github.com/binroot/quotester-appengine
Last synced: 11 days ago
JSON representation
Backend server code for Quotester Android app using Google AppEngine API
- Host: GitHub
- URL: https://github.com/binroot/quotester-appengine
- Owner: BinRoot
- Created: 2012-03-09T04:27:00.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-09T04:27:33.000Z (over 14 years ago)
- Last Synced: 2025-02-24T08:17:33.849Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 7.27 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
API Notes:
web: /add
use: creating new accounts
arguments: ?targetName=[...]&password=[...]
output: new entity in Root/"root" key
web: /login
use: validate username-password combination
arguments: ?username=[...]&password=[...]
output: 1 or 0 depending on successful login
web: /post
use: post quote to a target
arguments: ?targetName=[...]&password=[...]&content=[...]&points=[...]&author=[...]
output: new entity in Quote/"[targetName]"
web: /quotes
use: list quotes by a target
arguments: ?targetName=[...]&password=[...]
output: JSON of quotes
web: /list
use: view all targets
arguments: N/A
output: list targetNames
web: /delete
use: delete a quote
arguments: ?targetName=[...]&password=[...]&name=[...]
output: 1 or 0 depending on successful deletion