Classes | |
enum | com.hive.SocialHive.FriendType |
Types of Friend list. More... | |
enum | com.hive.SocialHive.HiveDialogType |
Types of HIVE Social WebView Dialog. More... | |
enum | com.hive.SocialHive.HiveRelationRoute |
HIVE The path form of friendship. More... | |
class | com.hive.SocialHive.ProfileHive |
HIVE user profile information More... | |
class | com.hive.SocialHive.MessageContent |
Message information. More... | |
class | com.hive.SocialHive.SocialBadge |
HIVE Social Badge information. More... | |
class | com.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... | |
Functions | |
static void | com.hive.SocialHive.getMyProfile (ProfileListener listener) |
Request profile information of HIVE certified users. More... | |
static void | com.hive.SocialHive.setMyProfile (String displayName, ProfileListener listener) |
Set profile information of HIVE certified users. More... | |
static void | com.hive.SocialHive.getFriends (FriendType friendType, ProfileListener 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. More... | |
static void | com.hive.SocialHive.getProfiles (String[] vidList, ProfileListener listener) |
HIVE 사용자 정보를 조회한다. More... | |
static void | com.hive.SocialHive.sendMessage (MessageContent messageContent, SendMessageListener 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. More... | |
static void | com.hive.SocialHive.sendInvitationMessage (MessageContent messageContent, SendMessageListener listener) |
Send a invite message to HIVE user. More... | |
static void | com.hive.SocialHive.showHiveDialog (HiveDialogType hiveDialogType, String vid, ShowHiveDialogListener listener) |
Show HIVE WebView dialog (- HIVE Social's default first screen (feed){ HiveDialogType::HOME} More... | |
static void | com.hive.SocialHive.getBadgeInfo (SocialBadgeListener listener) |
Request HIVE Social Badge info. More... | |
void | com.hive.SocialHive.ProfileListener.onProfile (ResultAPI result, List< ProfileHive > profileList) |
Returns HIVE Profile / Friend Information. More... | |
void | com.hive.SocialHive.SendMessageListener.onSendMessage (ResultAPI result) |
Returns HIVE message transmission result. More... | |
void | com.hive.SocialHive.ShowHiveDialogListener.onShowHiveDialog (ResultAPI result) |
Returns showing HIVE Social dialog result. More... | |
void | com.hive.SocialHive.SocialBadgeListener.onSocialBadge (ResultAPI result, SocialBadge badge) |
HIVE Social Badge information. More... | |
|
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 결과 통지 |
void com.hive.SocialHive.ProfileListener.onProfile | ( | 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.) |
void com.hive.SocialHive.SendMessageListener.onSendMessage | ( | ResultAPI | result | ) |
Returns HIVE message transmission result.
result | API call result |
void com.hive.SocialHive.ShowHiveDialogListener.onShowHiveDialog | ( | ResultAPI | result | ) |
Returns showing HIVE Social dialog result.
result | API call result |
void com.hive.SocialHive.SocialBadgeListener.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){ 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 |