Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robindemourat/angularzotero
🏭 Angular interface for communicating with a zotero account (read-only)
https://github.com/robindemourat/angularzotero
Last synced: about 1 month ago
JSON representation
🏭 Angular interface for communicating with a zotero account (read-only)
- Host: GitHub
- URL: https://github.com/robindemourat/angularzotero
- Owner: robindemourat
- Created: 2015-05-03T14:31:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-03T07:29:43.000Z (about 7 years ago)
- Last Synced: 2024-03-20T03:00:56.541Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 24.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angularzotero (WIP)
A set of two angular modules (ZoteroQueryMaker, ZoteroQueryHandler) that handle API calls to Zotero in order to retrieve library's content.
ZoteroQueryMaker manages a query object used to specify API call parameters and options.
ZoteroQueryHandler handles the API calls and their responses for controller.## Howto
## Get a Zotero API key
1. create a zotero account if you haven't one
2. go to https://www.zotero.org/settings/keys > create new private key > copy the retrieved key## Install the application
1. go to your terminal and type "git clone https://github.com/robindemourat/angularzotero.git" or click on "Download Zip" on right of this screen
2. in the terminal, cd to the retrieved repository and hit "cd app && bower install" (bower needed)
2. In the retrieve repository, go to app/scripts/controllers/main.js and, at line 14, replace 'Your API key here' with your private API key
3. from terminal, hit "python -m SimpleHTTPServer"
4. good to go !## More info
Doc to be improved.
Zotero API info : https://www.zotero.org/support/dev/web_api/v3/basics
Warning : this method exposes your API key on the front-end side. This means that one could access your library content with it, and this means that you shouldn't allow write access in your API key settings with this method.