#import <GamePotChannel/GamePotChannel.h>
// 定义类型
// GamePotChannelType.GOOGLE
// GamePotChannelType.FACEBOOK
// GamePotChannelType.LINE
// GamePotChannelType.TWITTER
// GamePotChannelType.NAVER
// GamePotChannelType.APPLE
[[GamePotChannel getInstance] CreateLinking:GOOGLE viewController:self success:^(GamePotUserInfo *userInfo) {
// 关联成功。请在游戏弹窗显示关联结果相关消息。(例如:账户关联成功。)
} cancel:^{
// 用户取消
} fail:^(NSError *error) {
// 关联失败。请在游戏弹窗显示失败原因相关消息。
// 消息语句请使用[error localizedDescription]。
}];
#import <GamePotChannel/GamePotChannel.h>
// 定义类型
// GamePotChannelType.GOOGLE
// GamePotChannelType.FACEBOOK
// GamePotChannelType.LINE
// GamePotChannelType.TWITTER
// GamePotChannelType.NAVER
// GamePotChannelType.APPLE
// 返回各类型的关联结果。
BOOL isGoogleLinked = [[GamePotChannel getInstance] isLinked:GOOGLE];
// 对已关联的类型,以JsonString格式返回。
NSString* linkedList = [[GamePotChannel getInstance] getLinkedListJsonString];
#import <GamePotChannel/GamePotChannel.h>
[[GamePotChannel getInstance] DeleteLinking:GOOGLE success:^{
// 解除成功。请在游戏弹窗显示关联结果相关消息。(例如:已解除账户关联。)
} fail:^(NSError *error) {
// 解除失败。请在游戏弹窗显示失败原因相关消息。
// 消息语句请使用[error localizedDescription]。
}];