WXApiObject.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. //
  2. // MMApiObject.h
  3. // Api对象,包含所有接口和对象数据定义
  4. //
  5. // Created by Wechat on 12-2-28.
  6. // Copyright (c) 2012年 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. /*! @brief 错误码
  11. *
  12. */
  13. enum WXErrCode {
  14. WXSuccess = 0, /**< 成功 */
  15. WXErrCodeCommon = -1, /**< 普通错误类型 */
  16. WXErrCodeUserCancel = -2, /**< 用户点击取消并返回 */
  17. WXErrCodeSentFail = -3, /**< 发送失败 */
  18. WXErrCodeAuthDeny = -4, /**< 授权失败 */
  19. WXErrCodeUnsupport = -5, /**< 微信不支持 */
  20. };
  21. /*! @brief 请求发送场景
  22. *
  23. */
  24. enum WXScene {
  25. WXSceneSession = 0, /**< 聊天界面 */
  26. WXSceneTimeline = 1, /**< 朋友圈 */
  27. WXSceneFavorite = 2, /**< 收藏 */
  28. };
  29. enum WXAPISupport {
  30. WXAPISupportSession = 0,
  31. };
  32. /*! @brief 跳转profile类型
  33. *
  34. */
  35. enum WXBizProfileType{
  36. WXBizProfileType_Normal = 0, //**< 普通公众号 */
  37. WXBizProfileType_Device = 1, //**< 硬件公众号 */
  38. };
  39. /*! @brief 跳转mp网页类型
  40. *
  41. */
  42. enum WXMPWebviewType {
  43. WXMPWebviewType_Ad = 0, /**< 广告网页 **/
  44. };
  45. /*! @brief 应用支持接收微信的文件类型
  46. *
  47. */
  48. typedef NS_ENUM(UInt64, enAppSupportContentFlag)
  49. {
  50. MMAPP_SUPPORT_NOCONTENT = 0x0,
  51. MMAPP_SUPPORT_TEXT = 0x1,
  52. MMAPP_SUPPORT_PICTURE = 0x2,
  53. MMAPP_SUPPORT_LOCATION = 0x4,
  54. MMAPP_SUPPORT_VIDEO = 0x8,
  55. MMAPP_SUPPORT_AUDIO = 0x10,
  56. MMAPP_SUPPORT_WEBPAGE = 0x20,
  57. // Suport File Type
  58. MMAPP_SUPPORT_DOC = 0x40, // doc
  59. MMAPP_SUPPORT_DOCX = 0x80, // docx
  60. MMAPP_SUPPORT_PPT = 0x100, // ppt
  61. MMAPP_SUPPORT_PPTX = 0x200, // pptx
  62. MMAPP_SUPPORT_XLS = 0x400, // xls
  63. MMAPP_SUPPORT_XLSX = 0x800, // xlsx
  64. MMAPP_SUPPORT_PDF = 0x1000, // pdf
  65. };
  66. #pragma mark - BaseReq
  67. /*! @brief 该类为微信终端SDK所有请求类的基类
  68. *
  69. */
  70. @interface BaseReq : NSObject
  71. /** 请求类型 */
  72. @property (nonatomic, assign) int type;
  73. /** 由用户微信号和AppID组成的唯一标识,发送请求时第三方程序必须填写,用于校验微信用户是否换号登录*/
  74. @property (nonatomic, retain) NSString* openID;
  75. @end
  76. #pragma mark - BaseResp
  77. /*! @brief 该类为微信终端SDK所有响应类的基类
  78. *
  79. */
  80. @interface BaseResp : NSObject
  81. /** 错误码 */
  82. @property (nonatomic, assign) int errCode;
  83. /** 错误提示字符串 */
  84. @property (nonatomic, retain) NSString *errStr;
  85. /** 响应类型 */
  86. @property (nonatomic, assign) int type;
  87. @end
  88. #pragma mark - WXMediaMessage
  89. @class WXMediaMessage;
  90. /*! @brief 第三方向微信终端发起支付的消息结构体
  91. *
  92. * 第三方向微信终端发起支付的消息结构体,微信终端处理后会向第三方返回处理结果
  93. * @see PayResp
  94. */
  95. @interface PayReq : BaseReq
  96. /** 商家向财付通申请的商家id */
  97. @property (nonatomic, retain) NSString *partnerId;
  98. /** 预支付订单 */
  99. @property (nonatomic, retain) NSString *prepayId;
  100. /** 随机串,防重发 */
  101. @property (nonatomic, retain) NSString *nonceStr;
  102. /** 时间戳,防重发 */
  103. @property (nonatomic, assign) UInt32 timeStamp;
  104. /** 商家根据财付通文档填写的数据和签名 */
  105. @property (nonatomic, retain) NSString *package;
  106. /** 商家根据微信开放平台文档对数据做的签名 */
  107. @property (nonatomic, retain) NSString *sign;
  108. @end
  109. #pragma mark - PayResp
  110. /*! @brief 微信终端返回给第三方的关于支付结果的结构体
  111. *
  112. * 微信终端返回给第三方的关于支付结果的结构体
  113. */
  114. @interface PayResp : BaseResp
  115. /** 财付通返回给商家的信息 */
  116. @property (nonatomic, retain) NSString *returnKey;
  117. @end
  118. /*! @brief 第三方向微信终端发起拆企业红包的消息结构体
  119. *
  120. * 第三方向微信终端发起拆企业红包的消息结构体,微信终端处理后会向第三方返回处理结果
  121. * @see HBReq
  122. */
  123. @interface HBReq : BaseReq
  124. /** 随机串,防重发 */
  125. @property (nonatomic, retain) NSString *nonceStr;
  126. /** 时间戳,防重发 */
  127. @property (nonatomic, assign) UInt32 timeStamp;
  128. /** 商家根据微信企业红包开发文档填写的数据和签名 */
  129. @property (nonatomic, retain) NSString *package;
  130. /** 商家根据微信企业红包开发文档对数据做的签名 */
  131. @property (nonatomic, retain) NSString *sign;
  132. @end
  133. #pragma mark - HBResp
  134. /*! @brief 微信终端返回给第三方的关于拆企业红包结果的结构体
  135. *
  136. * 微信终端返回给第三方的关于拆企业红包结果的结构体
  137. */
  138. @interface HBResp : BaseResp
  139. @end
  140. #pragma mark - SendAuthReq
  141. /*! @brief 第三方程序向微信终端请求认证的消息结构
  142. *
  143. * 第三方程序要向微信申请认证,并请求某些权限,需要调用WXApi的sendReq成员函数,
  144. * 向微信终端发送一个SendAuthReq消息结构。微信终端处理完后会向第三方程序发送一个处理结果。
  145. * @see SendAuthResp
  146. */
  147. @interface SendAuthReq : BaseReq
  148. /** 第三方程序要向微信申请认证,并请求某些权限,需要调用WXApi的sendReq成员函数,向微信终端发送一个SendAuthReq消息结构。微信终端处理完后会向第三方程序发送一个处理结果。
  149. * @see SendAuthResp
  150. * @note scope字符串长度不能超过1K
  151. */
  152. @property (nonatomic, retain) NSString* scope;
  153. /** 第三方程序本身用来标识其请求的唯一性,最后跳转回第三方程序时,由微信终端回传。
  154. * @note state字符串长度不能超过1K
  155. */
  156. @property (nonatomic, retain) NSString* state;
  157. @end
  158. #pragma mark - SendAuthResp
  159. /*! @brief 微信处理完第三方程序的认证和权限申请后向第三方程序回送的处理结果。
  160. *
  161. * 第三方程序要向微信申请认证,并请求某些权限,需要调用WXApi的sendReq成员函数,向微信终端发送一个SendAuthReq消息结构。
  162. * 微信终端处理完后会向第三方程序发送一个SendAuthResp。
  163. * @see onResp
  164. */
  165. @interface SendAuthResp : BaseResp
  166. @property (nonatomic, retain) NSString* code;
  167. /** 第三方程序发送时用来标识其请求的唯一性的标志,由第三方程序调用sendReq时传入,由微信终端回传
  168. * @note state字符串长度不能超过1K
  169. */
  170. @property (nonatomic, retain) NSString* state;
  171. @property (nonatomic, retain) NSString* lang;
  172. @property (nonatomic, retain) NSString* country;
  173. @end
  174. #pragma mark - SendMessageToWXReq
  175. /*! @brief 第三方程序发送消息至微信终端程序的消息结构体
  176. *
  177. * 第三方程序向微信发送信息需要传入SendMessageToWXReq结构体,信息类型包括文本消息和多媒体消息,
  178. * 分别对应于text和message成员。调用该方法后,微信处理完信息会向第三方程序发送一个处理结果。
  179. * @see SendMessageToWXResp
  180. */
  181. @interface SendMessageToWXReq : BaseReq
  182. /** 发送消息的文本内容
  183. * @note 文本长度必须大于0且小于10K
  184. */
  185. @property (nonatomic, retain) NSString* text;
  186. /** 发送消息的多媒体内容
  187. * @see WXMediaMessage
  188. */
  189. @property (nonatomic, retain) WXMediaMessage* message;
  190. /** 发送消息的类型,包括文本消息和多媒体消息两种,两者只能选择其一,不能同时发送文本和多媒体消息 */
  191. @property (nonatomic, assign) BOOL bText;
  192. /** 发送的目标场景,可以选择发送到会话(WXSceneSession)或者朋友圈(WXSceneTimeline)。 默认发送到会话。
  193. * @see WXScene
  194. */
  195. @property (nonatomic, assign) int scene;
  196. @end
  197. #pragma mark - SendMessageToWXResp
  198. /*! @brief 微信终端向第三方程序返回的SendMessageToWXReq处理结果。
  199. *
  200. * 第三方程序向微信终端发送SendMessageToWXReq后,微信发送回来的处理结果,该结果用SendMessageToWXResp表示。
  201. */
  202. @interface SendMessageToWXResp : BaseResp
  203. @property(nonatomic, retain) NSString* lang;
  204. @property(nonatomic, retain) NSString* country;
  205. @end
  206. #pragma mark - GetMessageFromWXReq
  207. /*! @brief 微信终端向第三方程序请求提供内容的消息结构体。
  208. *
  209. * 微信终端向第三方程序请求提供内容,微信终端会向第三方程序发送GetMessageFromWXReq消息结构体,
  210. * 需要第三方程序调用sendResp返回一个GetMessageFromWXResp消息结构体。
  211. */
  212. @interface GetMessageFromWXReq : BaseReq
  213. @property (nonatomic, retain) NSString* lang;
  214. @property (nonatomic, retain) NSString* country;
  215. @end
  216. #pragma mark - GetMessageFromWXResp
  217. /*! @brief 微信终端向第三方程序请求提供内容,第三方程序向微信终端返回的消息结构体。
  218. *
  219. * 微信终端向第三方程序请求提供内容,第三方程序调用sendResp向微信终端返回一个GetMessageFromWXResp消息结构体。
  220. */
  221. @interface GetMessageFromWXResp : BaseResp
  222. /** 向微信终端提供的文本内容
  223. @note 文本长度必须大于0且小于10K
  224. */
  225. @property (nonatomic, retain) NSString* text;
  226. /** 向微信终端提供的多媒体内容。
  227. * @see WXMediaMessage
  228. */
  229. @property (nonatomic, retain) WXMediaMessage* message;
  230. /** 向微信终端提供内容的消息类型,包括文本消息和多媒体消息两种,两者只能选择其一,不能同时发送文本和多媒体消息 */
  231. @property (nonatomic, assign) BOOL bText;
  232. @end
  233. #pragma mark - ShowMessageFromWXReq
  234. /*! @brief 微信通知第三方程序,要求第三方程序显示的消息结构体。
  235. *
  236. * 微信需要通知第三方程序显示或处理某些内容时,会向第三方程序发送ShowMessageFromWXReq消息结构体。
  237. * 第三方程序处理完内容后调用sendResp向微信终端发送ShowMessageFromWXResp。
  238. */
  239. @interface ShowMessageFromWXReq : BaseReq
  240. /** 微信终端向第三方程序发送的要求第三方程序处理的多媒体内容
  241. * @see WXMediaMessage
  242. */
  243. @property (nonatomic, retain) WXMediaMessage* message;
  244. @property (nonatomic, retain) NSString* lang;
  245. @property (nonatomic, retain) NSString* country;
  246. @end
  247. #pragma mark - ShowMessageFromWXResp
  248. /*! @brief 微信通知第三方程序,要求第三方程序显示或处理某些消息,第三方程序处理完后向微信终端发送的处理结果。
  249. *
  250. * 微信需要通知第三方程序显示或处理某些内容时,会向第三方程序发送ShowMessageFromWXReq消息结构体。
  251. * 第三方程序处理完内容后调用sendResp向微信终端发送ShowMessageFromWXResp。
  252. */
  253. @interface ShowMessageFromWXResp : BaseResp
  254. @end
  255. #pragma mark - LaunchFromWXReq
  256. /*! @brief 微信终端打开第三方程序携带的消息结构体
  257. *
  258. * 微信向第三方发送的结构体,第三方不需要返回
  259. */
  260. @interface LaunchFromWXReq : BaseReq
  261. @property (nonatomic, retain) WXMediaMessage* message;
  262. @property (nonatomic, retain) NSString* lang;
  263. @property (nonatomic, retain) NSString* country;
  264. @end
  265. #pragma mark - OpenTempSessionReq
  266. /* ! @brief 第三方通知微信,打开临时会话
  267. *
  268. * 第三方通知微信,打开临时会话
  269. */
  270. @interface OpenTempSessionReq : BaseReq
  271. /** 需要打开的用户名
  272. * @attention 长度不能超过512字节
  273. */
  274. @property (nonatomic, retain) NSString* username;
  275. /** 开发者自定义参数,拉起临时会话后会发给开发者后台,可以用于识别场景
  276. * @attention 长度不能超过32位
  277. */
  278. @property (nonatomic, retain) NSString* sessionFrom;
  279. @end
  280. #pragma mark - OpenWebviewReq
  281. /* ! @brief 第三方通知微信启动内部浏览器,打开指定网页
  282. *
  283. * 第三方通知微信启动内部浏览器,打开指定Url对应的网页
  284. */
  285. @interface OpenWebviewReq : BaseReq
  286. /** 需要打开的网页对应的Url
  287. * @attention 长度不能超过1024
  288. */
  289. @property(nonatomic,retain)NSString* url;
  290. @end
  291. #pragma mark - OpenWebviewResp
  292. /*! @brief 微信终端向第三方程序返回的OpenWebviewReq处理结果
  293. *
  294. * 第三方程序向微信终端发送OpenWebviewReq后,微信发送回来的处理结果,该结果用OpenWebviewResp表示
  295. */
  296. @interface OpenWebviewResp : BaseResp
  297. @end
  298. #pragma mark - OpenTempSessionResp
  299. /*! @brief 微信终端向第三方程序返回的OpenTempSessionReq处理结果。
  300. *
  301. * 第三方程序向微信终端发送OpenTempSessionReq后,微信发送回来的处理结果,该结果用OpenTempSessionResp表示。
  302. */
  303. @interface OpenTempSessionResp : BaseResp
  304. @end
  305. #pragma mark - OpenRankListReq
  306. /* ! @brief 第三方通知微信,打开硬件排行榜
  307. *
  308. * 第三方通知微信,打开硬件排行榜
  309. */
  310. @interface OpenRankListReq : BaseReq
  311. @end
  312. #pragma mark - OpenRanklistResp
  313. /*! @brief 微信终端向第三方程序返回的OpenRankListReq处理结果。
  314. *
  315. * 第三方程序向微信终端发送OpenRankListReq后,微信发送回来的处理结果,该结果用OpenRankListResp表示。
  316. */
  317. @interface OpenRankListResp : BaseResp
  318. @end
  319. #pragma mark - JumpToBizProfileReq
  320. /* ! @brief 第三方通知微信,打开指定微信号profile页面
  321. *
  322. * 第三方通知微信,打开指定微信号profile页面
  323. */
  324. @interface JumpToBizProfileReq : BaseReq
  325. /** 跳转到该公众号的profile
  326. * @attention 长度不能超过512字节
  327. */
  328. @property (nonatomic, retain) NSString* username;
  329. /** 如果用户加了该公众号为好友,extMsg会上传到服务器
  330. * @attention 长度不能超过1024字节
  331. */
  332. @property (nonatomic, retain) NSString* extMsg;
  333. /**
  334. * 跳转的公众号类型
  335. * @see WXBizProfileType
  336. */
  337. @property (nonatomic, assign) int profileType;
  338. @end
  339. #pragma mark - JumpToBizWebviewReq
  340. /* ! @brief 第三方通知微信,打开指定usrname的profile网页版
  341. *
  342. */
  343. @interface JumpToBizWebviewReq : BaseReq
  344. /** 跳转的网页类型,目前只支持广告页
  345. * @see WXMPWebviewType
  346. */
  347. @property(nonatomic, assign) int webType;
  348. /** 跳转到该公众号的profile网页版
  349. * @attention 长度不能超过512字节
  350. */
  351. @property(nonatomic, retain) NSString* tousrname;
  352. /** 如果用户加了该公众号为好友,extMsg会上传到服务器
  353. * @attention 长度不能超过1024字节
  354. */
  355. @property(nonatomic, retain) NSString* extMsg;
  356. @end
  357. #pragma mark - WXCardItem
  358. @interface WXCardItem : NSObject
  359. /** 卡id
  360. * @attention 长度不能超过1024字节
  361. */
  362. @property (nonatomic,retain) NSString* cardId;
  363. /** ext信息
  364. * @attention 长度不能超过2024字节
  365. */
  366. @property (nonatomic,retain) NSString* extMsg;
  367. /**
  368. * @attention 卡的状态,req不需要填。resp:0为未添加,1为已添加。
  369. */
  370. @property (nonatomic,assign) UInt32 cardState;
  371. /**
  372. * @attention req不需要填,chooseCard返回的。
  373. */
  374. @property (nonatomic,retain) NSString* encryptCode;
  375. /**
  376. * @attention req不需要填,chooseCard返回的。
  377. */
  378. @property (nonatomic,retain) NSString* appID;
  379. @end;
  380. #pragma mark - AddCardToWXCardPackageReq
  381. /* ! @brief 请求添加卡券至微信卡包
  382. *
  383. */
  384. @interface AddCardToWXCardPackageReq : BaseReq
  385. /** 卡列表
  386. * @attention 个数不能超过40个 类型WXCardItem
  387. */
  388. @property (nonatomic,retain) NSArray* cardAry;
  389. @end
  390. #pragma mark - AddCardToWXCardPackageResp
  391. /** ! @brief 微信返回第三方添加卡券结果
  392. *
  393. */
  394. @interface AddCardToWXCardPackageResp : BaseResp
  395. /** 卡列表
  396. * @attention 个数不能超过40个 类型WXCardItem
  397. */
  398. @property (nonatomic,retain) NSArray* cardAry;
  399. @end
  400. #pragma mark - WXChooseCardReq
  401. /* ! @brief 请求从微信选取卡券
  402. *
  403. */
  404. @interface WXChooseCardReq : BaseReq
  405. @property(nonatomic, strong) NSString *appID;
  406. @property(nonatomic, assign) UInt32 shopID;
  407. @property(nonatomic, assign) UInt32 canMultiSelect;
  408. @property(nonatomic, strong) NSString *cardType;
  409. @property(nonatomic, strong) NSString *cardTpID;
  410. @property(nonatomic, strong) NSString *signType;
  411. @property(nonatomic, strong) NSString *cardSign;
  412. @property(nonatomic, assign) UInt32 timeStamp;
  413. @property(nonatomic, strong) NSString *nonceStr;
  414. @end
  415. #pragma mark - WXChooseCardResp
  416. /** ! @brief 微信返回第三方请求选择卡券结果
  417. *
  418. */
  419. @interface WXChooseCardResp : BaseResp
  420. @property (nonatomic,retain) NSArray* cardAry;
  421. @end
  422. #pragma mark - WXMediaMessage
  423. /*! @brief 多媒体消息结构体
  424. *
  425. * 用于微信终端和第三方程序之间传递消息的多媒体消息内容
  426. */
  427. @interface WXMediaMessage : NSObject
  428. +(WXMediaMessage *) message;
  429. /** 标题
  430. * @note 长度不能超过512字节
  431. */
  432. @property (nonatomic, retain) NSString *title;
  433. /** 描述内容
  434. * @note 长度不能超过1K
  435. */
  436. @property (nonatomic, retain) NSString *description;
  437. /** 缩略图数据
  438. * @note 大小不能超过32K
  439. */
  440. @property (nonatomic, retain) NSData *thumbData;
  441. /**
  442. * @note 长度不能超过64字节
  443. */
  444. @property (nonatomic, retain) NSString *mediaTagName;
  445. /**
  446. *
  447. */
  448. @property (nonatomic, retain) NSString *messageExt;
  449. @property (nonatomic, retain) NSString *messageAction;
  450. /**
  451. * 多媒体数据对象,可以为WXImageObject,WXMusicObject,WXVideoObject,WXWebpageObject等。
  452. */
  453. @property (nonatomic, retain) id mediaObject;
  454. /*! @brief 设置消息缩略图的方法
  455. *
  456. * @param image 缩略图
  457. * @note 大小不能超过32K
  458. */
  459. - (void) setThumbImage:(UIImage *)image;
  460. @end
  461. #pragma mark - WXImageObject
  462. /*! @brief 多媒体消息中包含的图片数据对象
  463. *
  464. * 微信终端和第三方程序之间传递消息中包含的图片数据对象。
  465. * @note imageData成员不能为空
  466. * @see WXMediaMessage
  467. */
  468. @interface WXImageObject : NSObject
  469. /*! @brief 返回一个WXImageObject对象
  470. *
  471. * @note 返回的WXImageObject对象是自动释放的
  472. */
  473. +(WXImageObject *) object;
  474. /** 图片真实数据内容
  475. * @note 大小不能超过10M
  476. */
  477. @property (nonatomic, retain) NSData *imageData;
  478. @end
  479. #pragma mark - WXMusicObject
  480. /*! @brief 多媒体消息中包含的音乐数据对象
  481. *
  482. * 微信终端和第三方程序之间传递消息中包含的音乐数据对象。
  483. * @note musicUrl和musicLowBandUrl成员不能同时为空。
  484. * @see WXMediaMessage
  485. */
  486. @interface WXMusicObject : NSObject
  487. /*! @brief 返回一个WXMusicObject对象
  488. *
  489. * @note 返回的WXMusicObject对象是自动释放的
  490. */
  491. +(WXMusicObject *) object;
  492. /** 音乐网页的url地址
  493. * @note 长度不能超过10K
  494. */
  495. @property (nonatomic, retain) NSString *musicUrl;
  496. /** 音乐lowband网页的url地址
  497. * @note 长度不能超过10K
  498. */
  499. @property (nonatomic, retain) NSString *musicLowBandUrl;
  500. /** 音乐数据url地址
  501. * @note 长度不能超过10K
  502. */
  503. @property (nonatomic, retain) NSString *musicDataUrl;
  504. /**音乐lowband数据url地址
  505. * @note 长度不能超过10K
  506. */
  507. @property (nonatomic, retain) NSString *musicLowBandDataUrl;
  508. @end
  509. #pragma mark - WXVideoObject
  510. /*! @brief 多媒体消息中包含的视频数据对象
  511. *
  512. * 微信终端和第三方程序之间传递消息中包含的视频数据对象。
  513. * @note videoUrl和videoLowBandUrl不能同时为空。
  514. * @see WXMediaMessage
  515. */
  516. @interface WXVideoObject : NSObject
  517. /*! @brief 返回一个WXVideoObject对象
  518. *
  519. * @note 返回的WXVideoObject对象是自动释放的
  520. */
  521. +(WXVideoObject *) object;
  522. /** 视频网页的url地址
  523. * @note 长度不能超过10K
  524. */
  525. @property (nonatomic, retain) NSString *videoUrl;
  526. /** 视频lowband网页的url地址
  527. * @note 长度不能超过10K
  528. */
  529. @property (nonatomic, retain) NSString *videoLowBandUrl;
  530. @end
  531. #pragma mark - WXWebpageObject
  532. /*! @brief 多媒体消息中包含的网页数据对象
  533. *
  534. * 微信终端和第三方程序之间传递消息中包含的网页数据对象。
  535. * @see WXMediaMessage
  536. */
  537. @interface WXWebpageObject : NSObject
  538. /*! @brief 返回一个WXWebpageObject对象
  539. *
  540. * @note 返回的WXWebpageObject对象是自动释放的
  541. */
  542. +(WXWebpageObject *) object;
  543. /** 网页的url地址
  544. * @note 不能为空且长度不能超过10K
  545. */
  546. @property (nonatomic, retain) NSString *webpageUrl;
  547. @end
  548. #pragma mark - WXAppExtendObject
  549. /*! @brief 多媒体消息中包含的App扩展数据对象
  550. *
  551. * 第三方程序向微信终端发送包含WXAppExtendObject的多媒体消息,
  552. * 微信需要处理该消息时,会调用该第三方程序来处理多媒体消息内容。
  553. * @note url,extInfo和fileData不能同时为空
  554. * @see WXMediaMessage
  555. */
  556. @interface WXAppExtendObject : NSObject
  557. /*! @brief 返回一个WXAppExtendObject对象
  558. *
  559. * @note 返回的WXAppExtendObject对象是自动释放的
  560. */
  561. +(WXAppExtendObject *) object;
  562. /** 若第三方程序不存在,微信终端会打开该url所指的App下载地址
  563. * @note 长度不能超过10K
  564. */
  565. @property (nonatomic, retain) NSString *url;
  566. /** 第三方程序自定义简单数据,微信终端会回传给第三方程序处理
  567. * @note 长度不能超过2K
  568. */
  569. @property (nonatomic, retain) NSString *extInfo;
  570. /** App文件数据,该数据发送给微信好友,微信好友需要点击后下载数据,微信终端会回传给第三方程序处理
  571. * @note 大小不能超过10M
  572. */
  573. @property (nonatomic, retain) NSData *fileData;
  574. @end
  575. #pragma mark - WXEmoticonObject
  576. /*! @brief 多媒体消息中包含的表情数据对象
  577. *
  578. * 微信终端和第三方程序之间传递消息中包含的表情数据对象。
  579. * @see WXMediaMessage
  580. */
  581. @interface WXEmoticonObject : NSObject
  582. /*! @brief 返回一个WXEmoticonObject对象
  583. *
  584. * @note 返回的WXEmoticonObject对象是自动释放的
  585. */
  586. +(WXEmoticonObject *) object;
  587. /** 表情真实数据内容
  588. * @note 大小不能超过10M
  589. */
  590. @property (nonatomic, retain) NSData *emoticonData;
  591. @end
  592. #pragma mark - WXFileObject
  593. /*! @brief 多媒体消息中包含的文件数据对象
  594. *
  595. * @see WXMediaMessage
  596. */
  597. @interface WXFileObject : NSObject
  598. /*! @brief 返回一个WXFileObject对象
  599. *
  600. * @note 返回的WXFileObject对象是自动释放的
  601. */
  602. +(WXFileObject *) object;
  603. /** 文件后缀名
  604. * @note 长度不超过64字节
  605. */
  606. @property (nonatomic, retain) NSString *fileExtension;
  607. /** 文件真实数据内容
  608. * @note 大小不能超过10M
  609. */
  610. @property (nonatomic, retain) NSData *fileData;
  611. @end
  612. #pragma mark - WXLocationObject
  613. /*! @brief 多媒体消息中包含的地理位置数据对象
  614. *
  615. * 微信终端和第三方程序之间传递消息中包含的地理位置数据对象。
  616. * @see WXMediaMessage
  617. */
  618. @interface WXLocationObject : NSObject
  619. /*! @brief 返回一个WXLocationObject对象
  620. *
  621. * @note 返回的WXLocationObject对象是自动释放的
  622. */
  623. +(WXLocationObject *) object;
  624. /** 地理位置信息
  625. * @note 经纬度
  626. */
  627. @property (nonatomic, assign) double lng; //经度
  628. @property (nonatomic, assign) double lat; //纬度
  629. @end
  630. #pragma mark - WXTextObject
  631. /*! @brief 多媒体消息中包含的文本数据对象
  632. *
  633. * 微信终端和第三方程序之间传递消息中包含的文本数据对象。
  634. * @see WXMediaMessage
  635. */
  636. @interface WXTextObject : NSObject
  637. /*! @brief 返回一个WXTextObject对象
  638. *
  639. * @note 返回的WXTextObject对象是自动释放的
  640. */
  641. +(WXTextObject *) object;
  642. /** 地理位置信息
  643. * @note 文本内容
  644. */
  645. @property (nonatomic, retain) NSString *contentText;
  646. @end