Dribbble API for PHP
, (*1)
Simple php library for dribbble api, (*2)
Contents
-
Start
-
Usage
- Buckets
- Projects
- Shots
- Teams
- Users
- Jobs
- Author
- License
Start
Composer
$ composer require axp-dev/dribbble-api
Initialization
$token = '...';
$client = new DribbbleApi($token);
Usage
Get a bucket
public function getBuckets($id) : array
List shots for a bucket
public function getBucketsShots($id) : array
Get a project
public function getProjects($id) : array
List shots for a project
public function getProjectsShots($id) : array
Get a shot
public function getShot($id) : array
List shots
public function getShots($params = []) : array
List attachments for a shot
public function getShotsAttachments($id) : array
List buckets for a shot
public function getShotsBuckets($id) : array
public function getShotsComments($id) : array
List the likes for a shot
public function getShotsLikes($id) : array
List projects for a shot
public function getShotsProjects($id) : array
List rebounds for a shot
public function getShotsRebounds($id) : array
List a teams members
public function getTeamsMembers($id) : array
List shots for a team
public function getTeamsShots($id) : array
Get a single user
public function getUsers($id) : array
List a users buckets
public function getUsersBuckets($id) : array
List followers of a user
public function getUsersFollowers($id) : array
List users followed by a user
public function getUsersFollowing($id) : array
List shot likes for a user
public function getUsersLikes($id) : array
List a users projects
public function getUsersProjects($id) : array
List shots for a user
public function getUsersShots($id) : array
List a users teams
public function getUsersTeams($id) : array
Show a job
public function getJobs($id) : array
Author
Alexander Pushkarev, e-mail: axp-dev@yandex.com, (*3)
License
Open-sourced software licensed under the MIT license, (*4)