@addgroup SocialHive More...
Classes | |
class | hive.SocialHive |
HIVE users can view and modify their profile information and provide a social game service where they can make friends and play games with their friends together. More... | |
class | hive.ProfileHive |
HIVE user profile information More... | |
class | hive.MessageContent |
Message information. More... | |
class | hive.SocialBadge |
HIVE Social Badge information. More... | |
Enumerations | |
enum | hive.FriendType { hive.FriendType.IN_GAME , hive.FriendType.OUT_GAME , hive.FriendType.INVITED , hive.FriendType.ALL_GAME } |
Types of Friend list. More... | |
enum | hive.HiveDialogType { hive.HiveDialogType.HOME , hive.HiveDialogType.GAME , hive.HiveDialogType.USER , hive.HiveDialogType.INQUIRY , hive.HiveDialogType.MESSAGE , hive.HiveDialogType.CHATBOT , hive.HiveDialogType.MYINQUIRY } |
Types of HIVE Social WebView Dialog. More... | |
enum | hive.HiveRelationRoute { hive.HiveRelationRoute.DEFAULT , hive.HiveRelationRoute.HIVE , hive.HiveRelationRoute.FACEBOOK , hive.HiveRelationRoute.GAME , hive.HiveRelationRoute.CONTACT } |
HIVE The path form of friendship. More... | |
Functions | |
delegate void | hive.SocialHive.onProfileHive (ResultAPI result, List< ProfileHive > profileList) |
Returns HIVE Profile / Friend Information. | |
delegate void | hive.SocialHive.onSendMessageHive (ResultAPI result) |
Returns HIVE message transmission result. | |
delegate void | hive.SocialHive.onShowHiveDialog (ResultAPI result) |
Returns showing HIVE Social dialog result. | |
delegate void | hive.SocialHive.onSocialBadge (ResultAPI result, SocialBadge badge) |
HIVE Social Badge information. | |
static void | hive.SocialHive.getMyProfile (onProfileHive listener) |
Request profile information of HIVE certified users. | |
static void | hive.SocialHive.setMyProfile (String comment, onProfileHive listener) |
Set profile information of HIVE certified users. | |
static void | hive.SocialHive.getProfiles (String[] vidList, onProfileHive listener) |
HIVE 사용자 정보를 조회한다. | |
static void | hive.SocialHive.getFriends (FriendType friendType, onProfileHive listener) |
Request HIVE Profile / Friend Information In the form of friends, there are friends who play games together, friends who do not play games, friends who invite games, all friends, and these are defined by an enum called FriendType. | |
static void | hive.SocialHive.sendMessage (MessageContent messageContent, onSendMessageHive listener) |
Send message to HIVE friend If you send a message to a HIVE friend, a push notification will be sent to the recipient who has received the message. | |
static void | hive.SocialHive.sendInvitationMessage (MessageContent messageContent, onSendMessageHive listener) |
Send a invite message to HIVE user. | |
static void | hive.SocialHive.showHiveDialog (HiveDialogType hiveDialogType, String vid, onShowHiveDialog listener) |
Show HIVE WebView dialog (- HIVE Social's default first screen (feed){@inheritDoc HiveDialogType::HOME} | |
static void | hive.SocialHive.showHiveDialog (HiveDialogType hiveDialogType, String vid, String additionalInfo, onShowHiveDialog listener) |
Show HIVE WebView dialog (- HIVE Social's default first screen (feed){@inheritDoc HiveDialogType::HOME} | |
static void | hive.SocialHive.getBadgeInfo (onSocialBadge listener) |
Request HIVE Social Badge info. | |
@addgroup SocialHive
enum hive.FriendType |
enum hive.HiveDialogType |
|
static |
Request HIVE Social Badge info.
listener | SocialBadgeListener HIVE SocialBadge info result listener |
|
static |
Request HIVE Profile / Friend Information In the form of friends, there are friends who play games together, friends who do not play games, friends who invite games, all friends, and these are defined by an enum called FriendType.
friendType | Types of Friend list |
listener | API call result listener |
|
static |
Request profile information of HIVE certified users.
listener | API call result listener |
|
static |
HIVE 사용자 정보를 조회한다.
vidList | 조회하고자 하는 사용자의 VID 목록 |
listener | API 결과 통지 |
delegate void hive.SocialHive.onProfileHive | ( | ResultAPI | result, |
List< ProfileHive > | profileList ) |
Returns HIVE Profile / Friend Information.
result | API call result |
profileList | HIVE user's profile list. (If you ask for your profile, one result is returned, and if you ask for friends list, a list of friends is returned.) |
delegate void hive.SocialHive.onSendMessageHive | ( | ResultAPI | result | ) |
Returns HIVE message transmission result.
result | API call result |
delegate void hive.SocialHive.onShowHiveDialog | ( | ResultAPI | result | ) |
Returns showing HIVE Social dialog result.
result | API call result |
delegate void hive.SocialHive.onSocialBadge | ( | ResultAPI | result, |
SocialBadge | badge ) |
HIVE Social Badge information.
result | API call result |
badge | HIVE-Social Badge information |
|
static |
Send a invite message to HIVE user.
messageContent | Information to send HIVE invite message |
listener | API call result listener |
|
static |
Send message to HIVE friend
If you send a message to a HIVE friend, a push notification will be sent to the recipient who has received the message.
The medium to which the push notification is sent is the same game as the game that the sender is using, or a game that has been used recently.
When the recipient receives the push notification and touches the message, the game is executed, so the UI that leads to the HIVE message should be included in the game.
messageContent | Information to send HIVE message |
listener | API call result listener |
|
static |
Set profile information of HIVE certified users.
displayName | Message of user's status |
listener | API call result listener |
|
static |
Show HIVE WebView dialog
(- HIVE Social's default first screen (feed){@inheritDoc HiveDialogType::HOME}
hiveDialogType | HiveDialogType Type of HIVE WebView Dialog |
vid | If you go directly to your friend's profile page, set your friend's vid |
listener | API call result listener |
|
static |
Show HIVE WebView dialog
(- HIVE Social's default first screen (feed){@inheritDoc HiveDialogType::HOME}
hiveDialogType | HiveDialogType Type of HIVE WebView Dialog |
vid | If you go directly to your friend's profile page, set your friend's vid |
additionalInfo | Promised String data (JSON format) when you want to open chatbot page directly |
handler | API call result handler |