라이브 메인 - 팔로잉 채널 API 연동
This commit is contained in:
parent
1b53aec571
commit
f455aa81a2
|
@ -18,7 +18,7 @@ interface LiveRecommendApi {
|
||||||
@Header("Authorization") authHeader: String
|
@Header("Authorization") authHeader: String
|
||||||
): Flowable<ApiResponse<List<GetRecommendChannelResponse>>>
|
): Flowable<ApiResponse<List<GetRecommendChannelResponse>>>
|
||||||
|
|
||||||
@GET("/live/following/channel")
|
@GET("/live/recommend/following/channel/list")
|
||||||
fun getFollowingChannelList(
|
fun getFollowingChannelList(
|
||||||
@Header("Authorization") authHeader: String
|
@Header("Authorization") authHeader: String
|
||||||
): Single<ApiResponse<List<GetRecommendChannelResponse>>>
|
): Single<ApiResponse<List<GetRecommendChannelResponse>>>
|
||||||
|
|
|
@ -74,13 +74,13 @@ interface UserApi {
|
||||||
|
|
||||||
@POST("/member/creator/follow")
|
@POST("/member/creator/follow")
|
||||||
fun creatorFollow(
|
fun creatorFollow(
|
||||||
request: CreatorFollowRequestRequest,
|
@Body request: CreatorFollowRequestRequest,
|
||||||
@Header("Authorization") authHeader: String
|
@Header("Authorization") authHeader: String
|
||||||
): Single<ApiResponse<Any>>
|
): Single<ApiResponse<Any>>
|
||||||
|
|
||||||
@POST("/member/creator/unfollow")
|
@POST("/member/creator/unfollow")
|
||||||
fun creatorUnFollow(
|
fun creatorUnFollow(
|
||||||
request: CreatorFollowRequestRequest,
|
@Body request: CreatorFollowRequestRequest,
|
||||||
@Header("Authorization") authHeader: String
|
@Header("Authorization") authHeader: String
|
||||||
): Single<ApiResponse<Any>>
|
): Single<ApiResponse<Any>>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue