Commit 67182f12220fd16c8afe8b6adbde599a61f1dab2

Authored by 张旭
1 parent 53d314f5

serverUrl

LiveVideoCloud/UtilKits/ServerUrl/ZXServerUrl.m
... ... @@ -20,8 +20,11 @@
20 20 //////////// 具体请求接口URL
21 21 ////////////////////////////////////////////////////////
22 22  
23   -/** 直播列表 */
24   -static NSString *g_LiveListURL = @"/vod_epg/getVodInfo4App";
  23 +/** 点播列表 */
  24 +static NSString *g_VodListURL = @"/vod_epg/getVodInfo4App";
  25 +
  26 +/** UGC直播列表 */
  27 +static NSString *g_LiveListURL = @"/live_epg/sp/activityList4App";
25 28  
26 29 /** 直播活动详情 */
27 30 static NSString *g_LiveActivityInfoURL = @"/live_epg/getLiveActivityPlayInfo4App";
... ... @@ -51,7 +54,14 @@ static NSString *g_VerifyLiveAuthURL = @"/live_epg/channel/info4App";
51 54 //////////// BusinessUrls
52 55 ////////////////////////////////////////////////////////
53 56  
54   -/** 直播列表 */
  57 +
  58 +/** 点播列表 */
  59 ++ (NSString *)getVodListURL
  60 +{
  61 + NSString *url = serverBaseURL;
  62 + return [NSString stringWithFormat:@"%@%@", url, g_VodListURL];
  63 +}
  64 +/** UGC直播列表 */
55 65 + (NSString *)getLiveListURL
56 66 {
57 67 NSString *url = serverBaseURL;
... ...