File tree 2 files changed +8
-0
lines changed
soundcloud-api@/src/main/java/com/vpaliy/soundcloud
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ public interface Endpoints {
41
41
String ME_DEVICES = "me/devices" ;
42
42
String ME_FAVORITE_TRACK = "me/favorites/{id}" ;
43
43
String ME_FOLLOW = "me/followings/{id}" ;
44
+ String ME_FAVORITE_TRACKS = "me/favorites" ;
45
+ String ME_FOLLOWERS = "me/followings" ;
44
46
45
47
String SUGGESTED_USERS = "users/suggested" ;
46
48
Original file line number Diff line number Diff line change @@ -118,6 +118,12 @@ public interface SoundCloudService {
118
118
@ GET (Endpoints .ME_ACTIVITIES )
119
119
Single <List <ConnectionEntity >> fetchMyConnections ();
120
120
121
+ @ GET (Endpoints .ME_FOLLOWERS )
122
+ Single <List <UserEntity >> fetchMyFollowings ();
123
+
124
+ @ GET (Endpoints .ME_FAVORITE_TRACKS )
125
+ Single <List <TrackEntity >> fetchMyFavoriteTracks ();
126
+
121
127
@ GET (Endpoints .ME_CONNECTION )
122
128
Single <ConnectionEntity > fetchMyConnection (@ Path ("id" ) String connectionId );
123
129
You can’t perform that action at this time.
0 commit comments