-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadme
63 lines (51 loc) · 2.81 KB
/
readme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
This is an AS3 library for Dribbble built using StarRequests.
DISCLAIMER:
This library uses the first draft of the Dribbble API (http://www.dribbble.com/api).
As the API is updated this library will also be maintained, but bear with me as the API is frequently changing in these early stages.
TODO:
* Add appropriate error handling (this will come when it's implemented in the API)
* Add ASDoc comments (this won't happen until the API is out of beta)
* Create examples
* Add code snippets to wiki
* Add unit tests
CHANGELOG:
v0.7
* Added shortURL and reboundSourceID to the Shot class to reflect the latest API changes
* Added username to the Player class to reflect the latest API changes
* Added the following requests to reflect the latest API changes:
LikedShotsByPlayerIDRequest( playerID, page, amountPerPage )
LikedShotsByPlayerUsernameRequest( playerUsername, page, amountPerPage )
v0.6
* Added commentsCount, commentsReceivedCount, likesCount, likesReceivedCount, reboundsCount and reboundsReceivedCount to the Player class to reflect the latest API changes
* Added the following requests to reflect the latest API changes:
ReboundsByShotIDRequest( shotID, page, amountPerPage )
CommentsByShotIDRequest( shotID, page, amountPerPage )
v0.5
* Added twitterScreenName and draftedByPlayerID properties to the Player class to reflect the latest API changes
* Added the following requests to reflect the latest API changes:
PlayerDrafteesByIDRequest( playerID, page, amountPerPage )
PlayerDrafteesByUsernameRequest( playerUsername, page, amountPerPage )
PlayerFollowersByIDRequest( playerID, page, amountPerPage )
PlayerFollowersByUsernameRequest( playerUsername, page, amountPerPage )
PlayerFollowingByIDRequest( playerID, page, amountPerPage )
PlayerFollowingByUsernameRequest( playerUsername, page, amountPerPage )
v0.4
* Added viewsCount, likesCount, commentsCount and reboundsCount properties to the Shot class to reflect the latest API changes
* Added shotsCount, drafteesCount, followersCount and followingCount properties to the Player class to reflect the latest API changes
v0.3
* Added createdAt property to the Player and Shot classes to reflect the latest API changes
v0.2
* Removed redundant imports
* Removed JSON classes from ASDocs
v0.1
* Initial implementation of the Dribbble API. The following requests have been implemented
DebutShotsRequest( page, amountPerPage )
EveryoneShotsRequest( page, amountPerPage )
FollowingShotsByPlayerIDRequest( playerID, page, amountPerPage )
FollowingShotsByPlayerUsernameRequest( playerUsername, page, amountPerPage )
PlayerByIDRequest( playerID )
PlayerByUsernameRequest( playerUsername )
PlayerShotsByIDRequest( playerID, page, amountPerPage )
PlayerShotsByUsernameRequest( playerUsername, page, amountPerPage )
PopularShotsRequest( page, amountPerPage )
ShotByIDRequest( shotID )