Commit 179e9509e12a011c1b30bd8c48d73da09542ec1b

Authored by zhangxiaowen
1 parent 4922cebc

no message

CNLiveEnvironment.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveEnvironment'
11   - s.version = '0.0.2'
  11 + s.version = '0.0.3'
12 12 s.summary = '网家家环境.'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveEnvironment/Classes/CNLiveInterface.h
... ... @@ -364,6 +364,19 @@
364 364 #define CNAlbumMsgUrl cn_API_Classify(@"/contentApi/getAlbumMsg")
365 365 //节目列表
366 366 #define CNAlbumListUrl cn_API_Classify(@"/contentApi/albumAudioList")
  367 +//获取听见中国音频已购列表
  368 +#define CNGetAudioAlreadyBuyList cn_API_Classify(@"/recordApi/getOrdersList")
  369 +//积分付费购买音频
  370 +#define CNPayWithPointsUrl cn_API_OpenApi2(@"/pom/orderVideoByPoint")
  371 +//鉴权音频
  372 +#define CNPayAudioAuthUrl cn_API_OpenApi2(@"/lic/checkVideoLic")
  373 +//内购回调
  374 +#define CNApplePayCallbackUrl @"http://apps.pay.cnlive.com/upappnotify/notify/orderForVideo"
  375 +
  376 +#pragma mark - 文化中国
  377 +//文化中国获取合集列表
  378 +#define CNGetCultureChinaAlbumVideoList cn_API_Classify(@"/contentApi/albumVideoList")
  379 +
367 380  
368 381 #pragma mark - 体育中国
369 382 //体育中国-约跑路线
... ... @@ -394,6 +407,10 @@
394 407 //上传轨迹url
395 408 #define CNSportsChinaSaveShoeLineUrl cn_API_Host(@"/Daren/event/saveShoeLine.action")
396 409  
  410 +#pragma mark - 美食中国
  411 +//获取美食中国订阅号内容
  412 +#define CNGetSpListUrl cn_API_Classify(@"/contentApi/getList")
  413 +
397 414 #pragma mark - 目击者
398 415 //新版目击者
399 416 //获取新目击者界面数据
... ...
Example/CNLiveEnvironment/XWViewController.m
... ... @@ -27,6 +27,8 @@
27 27 NSLog(@"%d",TestEnvironment);
28 28  
29 29 NSLog(@"%@",CNCategoryGetChannelUrl);
  30 +
  31 + NSLog(@"%@",CNPayAudioAuthUrl);
30 32  
31 33  
32 34 }
... ...