| | |
| | | EQQAPI_THIRD_APP_GROUP_ERROR_CGI_FAILED = 15, // CGI请求失败 |
| | | EQQAPI_THIRD_APP_GROUP_ERROR_HAS_BINDED = 16, // 该组织已经绑定群聊 |
| | | EQQAPI_THIRD_APP_GROUP_ERROR_NOT_BINDED = 17, // 该组织尚未绑定群聊 |
| | | EQQAPI_THIRD_APP_GROUP_ERROR_HAS_UNBINDED = 18, // 该组织已经解绑群聊 |
| | | EQQAPIQZONENOTSUPPORTTEXT = 10000, //qzone分享不支持text类型分享 |
| | | EQQAPIQZONENOTSUPPORTIMAGE = 10001, //qzone分享不支持image类型分享 |
| | | EQQAPIVERSIONNEEDUPDATE = 10002, //当前QQ版本太低,需要更新至新版本才可以支持 |
| | | ETIMAPIVERSIONNEEDUPDATE = 10004, //当前TIM版本太低,需要更新至新版本才可以支持 |
| | | EAPPURLTYPESILLEGALITY = 20000, //(>=3.3.8)第三方APP的info.plist中UrlTypes字段存在QQ的UrlScheme |
| | | EQQAPI_ERROR_USER_NOT_AGREED_AUTHORIZATION = 30001, // 用户未同意隐私协议,用户同意隐私协议后,需要设置[TencentOAuth setIsUserAgreedAuthorization:YES]; |
| | | }; |
| | | |
| | | #pragma mark - QQApiObject(分享对象类型) |
| | |
| | | /** \brief 所有在QQ及插件间发送的数据对象的根类。 |
| | | */ |
| | | __attribute__((visibility("default"))) @interface QQApiObject : NSObject |
| | | @property(nonatomic, retain) NSString* title; ///< 标题,最长128个字符 |
| | | @property(nonatomic, retain) NSString* description; ///<简要描述,最长512个字符 |
| | | @property(nonatomic, retain) NSString* universalLink; ///(>=3.3.7)支持第三方传入在互联开放平台注册的universallink |
| | | |
| | | @property (nonatomic, copy) NSString *title; ///< 标题,最长128个字符 |
| | | @property (nonatomic, copy) NSString *description; ///<简要描述,最长512个字符 |
| | | @property (nonatomic, copy) NSString *universalLink; ///(>=3.3.7)支持第三方传入在互联开放平台注册的universallink |
| | | @property(nonatomic, assign) uint64_t cflag; |
| | | //353新增两个字断给游戏侧使用,对齐微信sdk |
| | | @property (nonatomic, copy) NSString *tagName; |
| | | @property (nonatomic, copy) NSString *messageExt; |
| | | /* |
| | | * 分享到QQ/TIM |
| | | * SDK根据是否安装对应客户端进行判断,判断顺序:QQ > TIM |
| | |
| | | /** \brief 支持Ark的根类。 |
| | | */ |
| | | __attribute__((visibility("default"))) @interface ArkObject : NSObject |
| | | @property(nonatomic,retain) NSString* arkData; ///< 显示Ark所需的数据,json串,长度暂不限制 |
| | | @property (nonatomic, copy) NSString *arkData; ///< 显示Ark所需的数据,json串,长度暂不限制 |
| | | @property(nonatomic,assign) QQApiObject* qqApiObject; ///<原有老版本的QQApiObject |
| | | |
| | | - (id)initWithData:(NSString *)arkData qqApiObject:(QQApiObject*)qqApiObject; |
| | |
| | | #pragma mark QQ小程序 |
| | | //分享小程序消息 - QQ 8.0.8 |
| | | __attribute__((visibility("default"))) @interface QQApiMiniProgramObject : NSObject |
| | | @property(nonatomic,retain) QQApiObject* qqApiObject; //原有老版本的QQApiObject |
| | | @property(nonatomic,retain) NSString* miniAppID; //必填,小程序的AppId(注:必须在QQ互联平台中,将该小程序与分享的App绑定) |
| | | @property(nonatomic,retain) NSString* miniPath; //必填,小程序的展示路径 |
| | | @property(nonatomic,retain) NSString* webpageUrl; //必填,兼容低版本的网页链接 |
| | | @property (nonatomic, strong) QQApiObject* qqApiObject; //原有老版本的QQApiObject |
| | | @property (nonatomic, copy) NSString *miniAppID; //必填,小程序的AppId(注:必须在QQ互联平台中,将该小程序与分享的App绑定) |
| | | @property (nonatomic, copy) NSString *miniPath; //必填,小程序的展示路径 |
| | | @property (nonatomic, copy) NSString *webpageUrl; //必填,兼容低版本的网页链接 |
| | | @property(nonatomic,assign) MiniProgramType miniprogramType; //非必填,小程序的类型,默认正式版(3),可选测试版(1)、预览版(4) |
| | | @end |
| | | |
| | | //唤起小程序 - QQ 8.1.8 |
| | | __attribute__((visibility("default"))) @interface QQApiLaunchMiniProgramObject : QQApiObject |
| | | @property(nonatomic,retain) NSString* miniAppID; //必填,小程序的AppId(注:必须在QQ互联平台中,将该小程序与分享的App绑定) |
| | | @property(nonatomic,retain) NSString* miniPath; //小程序的展示路径,不填展示默认小程序首页 |
| | | @property (nonatomic, copy) NSString *miniAppID; //必填,小程序的AppId(注:必须在QQ互联平台中,将该小程序与分享的App绑定) |
| | | @property (nonatomic, copy) NSString *miniPath; //小程序的展示路径,不填展示默认小程序首页 |
| | | @property(nonatomic,assign) MiniProgramType miniprogramType; //非必填,小程序的类型,默认正式版(3),可选测试版(1)、开发版(0) |
| | | @end |
| | | |
| | |
| | | </TABLE> |
| | | */ |
| | | __attribute__((visibility("default"))) @interface QQApiResultObject : QQApiObject |
| | | @property(nonatomic,retain) NSString* error; ///<错误 |
| | | @property(nonatomic,retain) NSString* errorDescription; ///<错误描述 |
| | | @property(nonatomic,retain) NSString* extendInfo; ///<扩展信息 |
| | | @property (nonatomic, copy) NSString *error; ///<错误 |
| | | @property (nonatomic, copy) NSString *errorDescription; ///<错误描述 |
| | | @property (nonatomic, copy) NSString *extendInfo; ///<扩展信息 |
| | | @property (nonatomic, copy) NSDictionary *otherInfo; ///<其他扩展信息 |
| | | @end |
| | | |
| | | // QQApiTextObject |
| | | /** \brief 文本对象 |
| | | */ |
| | | @interface QQApiTextObject : QQApiObject |
| | | @property(nonatomic,retain)NSString* text; ///<文本内容,必填,最长1536个字符 |
| | | @property (nonatomic, copy)NSString *text; ///<文本内容,必填,最长1536个字符 |
| | | |
| | | -(id)initWithText:(NSString*)text; ///<初始化方法 |
| | | +(id)objectWithText:(NSString*)text;///<工厂方法,获取一个QQApiTextObject对象. |
| | | |
| | | @end |
| | | |
| | | // QQApiURLObject |
| | |
| | | */ |
| | | @property(nonatomic)QQApiURLTargetType targetContentType; |
| | | |
| | | @property(nonatomic,retain)NSURL* url; ///<URL地址,必填,最长512个字符 |
| | | @property(nonatomic,retain)NSData* previewImageData;///<预览图像数据,最大1M字节 |
| | | @property(nonatomic, retain) NSURL *previewImageURL; ///<预览图像URL **预览图像数据与预览图像URL可二选一 |
| | | @property (nonatomic, strong) NSURL *url; ///<URL地址,必填,最长512个字符 |
| | | @property (nonatomic, copy) NSData *previewImageData;///<预览图像数据,最大1M字节 |
| | | @property (nonatomic, strong) NSURL *previewImageURL; ///<预览图像URL **预览图像数据与预览图像URL可二选一 |
| | | |
| | | /** |
| | | 初始化方法 |
| | | */ |
| | | -(id)initWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageData:(NSData*)data targetContentType:(QQApiURLTargetType)targetContentType; |
| | | |
| | | -(id)initWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageURL:(NSURL*)previewURL targetContentType:(QQApiURLTargetType)targetContentType; |
| | | /** |
| | | 工厂方法,获取一个QQApiURLObject对象 |
| | | */ |
| | | +(id)objectWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageData:(NSData*)data targetContentType:(QQApiURLTargetType)targetContentType; |
| | | |
| | | +(id)objectWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageURL:(NSURL*)previewURL targetContentType:(QQApiURLTargetType)targetContentType; |
| | | |
| | | @end |
| | | |
| | | // QQApiExtendObject |
| | | /** @brief 扩展数据类型 |
| | | */ |
| | | @interface QQApiExtendObject : QQApiObject |
| | | @property(nonatomic,retain) NSData* data;///<具体数据内容,必填,最大5M字节 |
| | | @property(nonatomic,retain) NSData* previewImageData;///<预览图像,最大1M字节 |
| | | @property(nonatomic,retain) NSArray* imageDataArray;///图片数组(多图暂只支持分享到手机QQ收藏功能) |
| | | @property (nonatomic, copy) NSData *data;///<具体数据内容,必填,最大5M字节 |
| | | @property (nonatomic, copy) NSData *previewImageData;///<预览图像,最大1M字节 |
| | | @property (nonatomic, copy) NSArray *imageDataArray;///图片数组(多图暂只支持分享到手机QQ收藏功能) |
| | | |
| | | /** |
| | | 初始化方法 |
| | |
| | | */ |
| | | - (id)initWithData:(NSData *)data previewImageData:(NSData*)previewImageData title:(NSString *)title description:(NSString *)description imageDataArray:(NSArray *)imageDataArray; |
| | | |
| | | |
| | | /** |
| | | helper方法获取一个autorelease的<code>QQApiExtendObject</code>对象 |
| | | @param data 数据内容 |
| | |
| | | 一个自动释放的<code>QQApiExtendObject</code>实例 |
| | | */ |
| | | + (id)objectWithData:(NSData*)data previewImageData:(NSData*)previewImageData title:(NSString*)title description:(NSString*)description; |
| | | |
| | | /** |
| | | helper方法获取一个autorelease的<code>QQApiExtendObject</code>对象 |
| | | @param data 数据内容 |
| | |
| | | 一个自动释放的<code>QQApiExtendObject</code>实例 |
| | | */ |
| | | + (id)objectWithData:(NSData*)data previewImageData:(NSData*)previewImageData title:(NSString*)title description:(NSString*)description imageDataArray:(NSArray*)imageDataArray; |
| | | |
| | | |
| | | @end |
| | | |
| | |
| | | @"ret=-17&error_des=account diff"//账号不一致 |
| | | */ |
| | | @interface QQApiVideoForQQAvatarObject : QQApiExtendObject |
| | | @property(nonatomic, retain) NSString *assetURL; |
| | | @property (nonatomic, copy) NSString *assetURL; |
| | | @end |
| | | |
| | | |
| | | |
| | | //QQApiAuthObject 用于拉起手Q的授权详情页 |
| | | @interface QQApiAuthObject : QQApiObject |
| | | @end |
| | | |
| | | // QQApiImageArrayForFaceCollectionObject |
| | |
| | | */ |
| | | @interface QQApiImageArrayForFaceCollectionObject : QQApiObject |
| | | |
| | | @property(nonatomic,retain) NSArray* imageDataArray;///图片数组 |
| | | @property (nonatomic, copy) NSArray *imageDataArray;///图片数组 |
| | | |
| | | /** |
| | | 初始化方法 |
| | |
| | | */ |
| | | @interface QQApiImageArrayForQZoneObject : QQApiObject |
| | | |
| | | @property(nonatomic,retain) NSArray* imageDataArray;///图片数组 |
| | | @property(nonatomic,retain) NSDictionary* extMap; // 扩展字段 |
| | | @property (nonatomic, copy) NSArray *imageDataArray;///图片数组 |
| | | @property (nonatomic, copy) NSDictionary *extMap; // 扩展字段 |
| | | |
| | | /** |
| | | 初始化方法 |
| | |
| | | */ |
| | | @interface QQApiVideoForQZoneObject : QQApiObject |
| | | |
| | | @property(nonatomic, retain) NSString *assetURL; |
| | | @property(nonatomic,retain) NSDictionary* extMap; // 扩展字段 |
| | | @property(nonatomic,retain) NSData* videoData; |
| | | @property (nonatomic, copy) NSString *assetURL; |
| | | @property (nonatomic, copy) NSDictionary *extMap; // 扩展字段 |
| | | @property (nonatomic, copy) NSData *videoData; |
| | | |
| | | - (id)initWithAssetURL:(NSString*)assetURL title:(NSString*)title extMap:(NSDictionary *)extMap; |
| | | |
| | |
| | | */ |
| | | @interface QQApiWebImageObject : QQApiObject |
| | | |
| | | @property(nonatomic, retain) NSURL *previewImageURL; ///<预览图像URL |
| | | @property (nonatomic, strong) NSURL *previewImageURL; ///<预览图像URL |
| | | |
| | | /** |
| | | 初始化方法 |
| | |
| | | /** @brief 本地文件对象(暂只支持分享到手机QQ数据线功能) |
| | | 用于分享文件内容的对象,是一个指定为文件类型的<code>QQApiExtendObject</code> |
| | | */ |
| | | @interface QQApiFileObject : QQApiExtendObject |
| | | { |
| | | @interface QQApiFileObject : QQApiExtendObject { |
| | | NSString* _fileName; |
| | | } |
| | | @property(nonatomic, retain)NSString* fileName; |
| | | |
| | | @property (nonatomic, copy)NSString *fileName; |
| | | |
| | | @end |
| | | |
| | | // QQApiAudioObject |
| | |
| | | */ |
| | | @interface QQApiAudioObject : QQApiURLObject |
| | | |
| | | @property (nonatomic, retain) NSURL *flashURL; ///<音频URL地址,最长512个字符 |
| | | @property (nonatomic, strong) NSURL *flashURL; ///<音频URL地址,最长512个字符 |
| | | |
| | | /** |
| | | 获取一个autorelease的<code>QQApiAudioObject</code> |
| | |
| | | */ |
| | | @interface QQApiVideoObject : QQApiURLObject |
| | | |
| | | @property (nonatomic, retain) NSURL *flashURL; ///<视频URL地址,最长512个字符 |
| | | @property (nonatomic, strong) NSURL *flashURL; ///<视频URL地址,最长512个字符 |
| | | |
| | | /** |
| | | 获取一个autorelease的<code>QQApiVideoObject</code> |
| | |
| | | @note 如果url为空,调用<code>QQApi#sendMessage:</code>时将返回FALSE |
| | | */ |
| | | +(id)objectWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageData:(NSData*)data; |
| | | |
| | | /** |
| | | 获取一个autorelease的<code>QQApiVideoObject</code> |
| | | @param url 视频内容的目标URL |
| | |
| | | @note 如果url为空,调用<code>QQApi#sendMessage:</code>时将返回FALSE |
| | | */ |
| | | +(id)objectWithURL:(NSURL*)url title:(NSString*)title description:(NSString*)description previewImageData:(NSData*)data; |
| | | |
| | | /** |
| | | 获取一个autorelease的<code>QQApiNewsObject</code> |
| | | @param url 视频内容的目标URL |
| | |
| | | 预定义的界面布局类型 |
| | | */ |
| | | @property(nonatomic,assign) unsigned int layoutType; |
| | | @property(nonatomic,assign) NSData* previewImageData;///<预览图 |
| | | @property(nonatomic,retain) NSArray* textArray;///<文本列表 |
| | | @property(nonatomic,retain) NSArray* pictureDataArray;///<图片列表 |
| | | @property (nonatomic, copy) NSData *previewImageData;///<预览图 |
| | | @property (nonatomic, copy) NSArray *textArray;///<文本列表 |
| | | @property (nonatomic, copy) NSArray *pictureDataArray;///<图片列表 |
| | | +(id)objectWithLayoutType:(int)layoutType textArray:(NSArray*)textArray pictureArray:(NSArray*)pictureArray previewImageData:(NSData*)data; |
| | | /** |
| | | 将一个NSDictionary对象转化为QQApiCommomContentObject,如果无法转换,则返回空 |
| | |
| | | -(NSDictionary*)toDictionary; |
| | | @end |
| | | |
| | | // QQApiExtraServiceObject; |
| | | // QQApiExtraServiceObject; 通用业务消息处理类(旧版,后续使用QQApiCommonServiceObject) |
| | | /** |
| | | @brief OpenSDK扩展支持的服务,通用接口,后续会扩充能力 |
| | | @param serviceID [必选] 扩展支持的服务类型ID,参考官方文档说明 |
| | |
| | | @note 该接口的使用须先登录 |
| | | */ |
| | | @interface QQApiExtraServiceObject : QQApiObject |
| | | @property (nonatomic,retain) NSString* serviceID; |
| | | @property (nonatomic,retain) NSString* openID; |
| | | @property (nonatomic,retain) NSString* toUin; |
| | | @property (nonatomic,retain) NSDictionary* extraInfo; |
| | | @property (nonatomic, copy) NSString *serviceID; |
| | | @property (nonatomic, copy) NSString *openID; |
| | | @property (nonatomic, copy) NSString *toUin; |
| | | @property (nonatomic, copy) NSDictionary *extraInfo; |
| | | |
| | | - (id)initWithOpenID:(NSString *)openID serviceID:(NSString *)serviceID; |
| | | + (id)objecWithOpenID:(NSString *)openID serviceID:(NSString *)serviceID; |
| | | @end |
| | | |
| | | |
| | | /** |
| | | * QQApiCommonServiceObject; 通用业务消息处理类(新),可以适用所有的需要通过互联SDK发消息给手Q的业务去处理。 |
| | | * 使用前需要申请serviceID,每个业务功能有个对应的serviceID |
| | | */ |
| | | @interface QQApiCommonServiceObject : QQApiObject |
| | | |
| | | // [必选] 授权登录后对该用户的唯一标识 |
| | | @property (nonatomic, copy) NSString *openID; |
| | | |
| | | // [必选] 扩展支持的服务类型ID,参考官方文档说明 |
| | | @property (nonatomic, copy) NSString *serviceID; |
| | | |
| | | // [可选] 扩展字段,由调用方跟具体的业务方协定具体的字段 |
| | | @property (nonatomic, copy) NSDictionary *extendInfo; |
| | | |
| | | - (instancetype)initWithOpenID:(NSString *)openID |
| | | serviceID:(NSString *)serviceID |
| | | extendInfo:(NSDictionary *)extendInfo; |
| | | |
| | | + (instancetype)objecWithOpenID:(NSString *)openID |
| | | serviceID:(NSString *)serviceID |
| | | extendInfo:(NSDictionary *)extendInfo; |
| | | |
| | | @end |
| | | |
| | | |
| | |
| | | /** @brief 广告数据对象 |
| | | */ |
| | | @interface QQApiAdItem : NSObject |
| | | @property(nonatomic,retain) NSString* title; ///<名称 |
| | | @property(nonatomic,retain) NSString* description;///<描述 |
| | | @property(nonatomic,retain) NSData* imageData;///<广告图片 |
| | | @property(nonatomic,retain) NSURL* target;///<广告目标链接 |
| | | @property (nonatomic, copy) NSString *title; ///<名称 |
| | | @property (nonatomic, copy) NSString *description;///<描述 |
| | | @property (nonatomic, copy) NSData *imageData;///<广告图片 |
| | | @property (nonatomic, strong) NSURL *target;///<广告目标链接 |
| | | @end |
| | | |
| | | |
| | |
| | | @property (nonatomic, assign) int type; |
| | | |
| | | /** 扩展信息 */ |
| | | @property (nonatomic, assign) NSString* extendInfo; |
| | | @property (nonatomic, copy) NSString *extendInfo; |
| | | |
| | | @end |
| | | |
| | |
| | | */ |
| | | +(SendMessageToQQReq*) reqWithMiniContent:(QQApiMiniProgramObject *)miniMessage; |
| | | /** 具体分享消息 */ |
| | | @property (nonatomic, retain) QQApiObject *message; |
| | | @property (nonatomic, strong) QQApiObject *apiObject; |
| | | |
| | | /** 支持Ark的具体分享消息 */ |
| | | @property (nonatomic, retain) ArkObject *arkMessage; |
| | | @property (nonatomic, strong) ArkObject *arkObject; |
| | | /** 支持小程序的具体分享消息 */ |
| | | @property (nonatomic, retain) QQApiMiniProgramObject *miniMessage; |
| | | @property (nonatomic, strong) QQApiMiniProgramObject *miniProgramObject; |
| | | @end |
| | | |
| | | /** |
| | | SendMessageToQQResp应答帮助类 |
| | | */ |
| | | @interface SendMessageToQQResp : QQBaseResp |
| | | |
| | | /** 其他扩展信息 */ |
| | | @property (nonatomic, copy) NSDictionary *otherInfo; |
| | | |
| | | /** |
| | | 创建一个SendMessageToQQResp应答实例 |
| | |
| | | \return 新创建的SendMessageToQQResp应答实例 |
| | | */ |
| | | + (SendMessageToQQResp *)respWithResult:(NSString *)result errorDescription:(NSString *)errDesp extendInfo:(NSString*)extendInfo; |
| | | |
| | | + (SendMessageToQQResp *) respWithResult:(NSString *)result errorDescription:(NSString *)errDesp extendInfo:(NSString *)extendInfo otherInfo:(NSDictionary *)otherInfo; |
| | | |
| | | @end |
| | | |
| | |
| | | + (ShowMessageFromQQReq *)reqWithContent:(QQApiObject *)message; |
| | | |
| | | /** 具体待展现消息 */ |
| | | @property (nonatomic, retain) QQApiObject *message; |
| | | @property (nonatomic, strong) QQApiObject *message; |
| | | |
| | | @end |
| | | |
| | | #pragma mark --一键加群&建群&解绑群 |
| | | // QQApiThirdAppBindGroupObject |
| | | /** \brief 第三方app绑定群 |
| | | */ |
| | | @interface QQApiThirdAppBindGroupObject : QQApiObject |
| | | |
| | | @property (nonatomic, copy) NSString *accessToken; |
| | | @property (nonatomic, copy) NSString *payToken; |
| | | @property (nonatomic, copy) NSString *pfkey; |
| | | @property (nonatomic, copy) NSString *unionID; |
| | | @property (nonatomic, copy) NSString *appDisplayName; |
| | | |
| | | - (id)initWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID appDisplayName:(NSString *)appDisplayName; ///<初始化方法 |
| | | + (id)objectWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID appDisplayName:(NSString *)appDisplayName; ///<工厂方法,获取一个QQApiThirdAppBindGroupObject对象. |
| | | |
| | | @end |
| | | |
| | | // QQApiThirdAppJoinGroupObject |
| | | /** \brief 第三方app加入群 |
| | | */ |
| | | @interface QQApiThirdAppJoinGroupObject : QQApiObject |
| | | |
| | | @property (nonatomic, copy) NSString *accessToken; |
| | | @property (nonatomic, copy) NSString *payToken; |
| | | @property (nonatomic, copy) NSString *pfkey; |
| | | @property (nonatomic, copy) NSString *unionID; |
| | | |
| | | - (id)initWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID; ///<初始化方法 |
| | | |
| | | + (id)objectWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID; ///<工厂方法,获取一个QQApiThirdAppJoinGroupObject对象. |
| | | |
| | | @end |
| | | |
| | | // QQApiThirdAppUnBindGroupObject |
| | | /** \brief 第三方app解绑群 |
| | | */ |
| | | @interface QQApiThirdAppUnBindGroupObject : QQApiObject |
| | | |
| | | @property (nonatomic, copy) NSString *accessToken; |
| | | @property (nonatomic, copy) NSString *openId; |
| | | @property (nonatomic, copy) NSString *payToken; |
| | | @property (nonatomic, copy) NSString *pfkey; |
| | | @property (nonatomic, copy) NSString *unionID; |
| | | |
| | | - (id)initWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID openId:(NSString *)openId appId:(NSString *)appId; ///<初始化方法 |
| | | |
| | | + (id)objectWithAccessToken:(NSString *)accessToken payToken:(NSString *)payToken pfkey:(NSString *)pfkey unionID:(NSString *)unionID openId:(NSString *)openId appId:(NSString *)appId; ///<工厂方法,获取一个QQApiThirdAppBindGroupObject对象. |
| | | |
| | | @end |
| | | |