Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jleagle/gazelle-api-client
A helper class to access the API on Gazelle sites
https://github.com/jleagle/gazelle-api-client
Last synced: about 9 hours ago
JSON representation
A helper class to access the API on Gazelle sites
- Host: GitHub
- URL: https://github.com/jleagle/gazelle-api-client
- Owner: Jleagle
- Created: 2014-04-15T09:15:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T22:42:52.000Z (almost 9 years ago)
- Last Synced: 2025-01-02T09:05:50.322Z (18 days ago)
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gazelle-api-client
A helper class to access the API on [Gazelle](https://github.com/WhatCD/Gazelle/wiki/JSON-API-Documentation) sites
### Usage
Instantiate the class using your website username and password:
```php
$gazelle = new Gazelle(USER, PASS);
```Example API calls:
```php
$gazelle->getIndex();
$gazelle->getInbox();
$gazelle->getTopTen();
$gazelle->getRequests();
$gazelle->getArtistBookmarks();
$gazelle->getTorrentBookmarks();
$gazelle->getSubscriptions();
$gazelle->getForumCategories();
$gazelle->getNotifications();
$gazelle->getAnnouncements();
```