12345678910111213141516171819202122232425262728 |
- package com.fdkankan.tk.httpClient.client;
- import com.alibaba.fastjson.JSONObject;
- import com.dtflys.forest.annotation.*;
- import com.fdkankan.tk.httpClient.address.FdkkAddressSource;
- import com.fdkankan.tk.httpClient.request.WxGetPhoneParam;
- import com.fdkankan.tk.httpClient.request.WxGetQrCodeParam;
- import com.fdkankan.tk.httpClient.response.WxOpenIdVo;
- /**
- * 获取,调用4dkk服务
- */
- @Address(source = FdkkAddressSource.class)
- public interface LiveClient {
- /**
- * 获取 弹幕列表
- */
- @Get("/service/room-manager/danmaku/{wxRoomId}")
- JSONObject getDanmaku(@Var("wxRoomId") String wxRoomId);
- /**
- * 删除 弹幕列表
- */
- @Get("/service/room-manager/danmaku/delete/{wxRoomId}")
- JSONObject deleteDanmaku(@Var("wxRoomId") String wxRoomId);
- }
|