アカウントをバンし制限する
Introduction
The user ban feature allows you to restrict a user's access to your game or specific features in your game. You can ban players and lift existing bans in the AccelByte Gaming Services (AGS) Admin Portal.
AGS allows you to impose the following banning methods:
- Account Ban: Revoke access tokens for banned players.
- Feature Ban: Invalidate access tokens for specific in-game features.
- Device Ban: Restrict access to your game from a specific device using its unique ID.
All ban actions will revoke existing access tokens.
- If it's an account ban, the refresh_token will also be revoked. This means the user can't login using their credentials or a refresh_token.
- If it's a feature ban, the refresh_token will still be valid. This means the user can use the refresh_token to log in immediately.
- If the ban is on the game namespace, it will only affect that game namespace.
- If the ban is on the publisher namespace, it will affect both the publisher and the game namespace.
Prerequisites
Make sure you have access to the Admin Portal.
Make sure you have the following permissions:
Usage Permissions Action Ban a player ADMIN:NAMESPACE:{namespace}:USER:{userId}:BAN
CREATE
Enable or disable a player's Ban ADMIN:NAMESPACE:{namespace}:USER:{userId}:BAN
UPDATE
Retrieve ban types and reasons ADMIN:BAN
READ
Ban scope
- If you ban a player at the publisher namespace level, the ban will apply to all the namespaces in it.
In Shared Cloud tier, this applies to the studio namespace, which has the same function as the publisher namespace in the Private Cloud tier.
- If you ban a player at the game namespace level, the ban only applies to the specific game namespace.
Ban a player by account
In the Admin Portal, go to Live Service Utilities > Lookup Users.
Search for the player you want to ban using the corresponding credentials.
Click View in Action to open the account. The user account details appear.
Click Bans, and then click Add Ban to ban the selected user.
The Add Ban settings appear.
Add the user ban details
Choose the Ban Type.
Feature Ban Details
If you choose Feature Ban, you must choose the feature you want to restrict. A list of the features that players can be banned from can be found in the following table.
Feature Restriction Description CHAT_SEND
Player is banned from sending a message CHAT_ALL
Player is banned from both sending and receiving messages ORDER_AND_PAYMENT
Player is banned from making purchases in-game STATISTICS
Player will not have their statistics recorded LEADERBOARD
Player will not appear on any leaderboards MATCHMAKING
Player is banned from matchmaking In Ban Expiration, select one of the following:
Set by duration: Enter the number of minutes, hours, or days you want the player to be banned for. The ban expires after this duration.
Set by expiration date: Enter the date and time you want the ban to expire.
Never: Set a permanent ban.
In Reason, choose a reason for the ban.
Reason Details
The following table lists the reasons available for a ban:
Reason Description VIOLENCE
Player is banned for posting violent content HARASSMENT
Player is banned for harassing other players HATEFUL_CONDUCT
Player is banned for acting hatefully towards other players OFFENSIVE_USERNAME
Player is banned for having an offensive username IMPERSONATION
Player is banned for impersonating other players MALICIOUS_CONTENT
Player is banned for posting malicious content such as spam, scams, etc. SEXUALLY_SUGGESTIVE
Player is banned for posting sexually explicit or suggestive content SEXUAL_VIOLENCE
Player is banned for acting sexually violent or exploiting other players EXTREME_VIOLENCE
Player is banned for extremely violent content, such as gore UNDERAGE_USER
Player is banned for being underage CHEATING
Player is banned for cheating TOS_VIOLATION
Player is banned for violating the Terms of Service Type a comment to include any relevant information about the ban.
Select the Notify user via email checkbox to send a ban notification to the player via email.
備考Players that log into your game using third-party credentials may only have a headless account in the Admin Portal. This means their account won't have an associated email address. Only players that have registered an account in your game (or platform), or have upgraded their headless account by registering an email address in your game, will be able to receive an email notification if they're banned. For more information, see How accounts work.
Click Ban. The new ban appears in the Bans list.
Ban a player by device
The device ban feature is only available in game namespaces.
The device ban feature is not yet supported in AGS Shared Cloud.
In the Admin Portal, go to Live Service Utilities > Lookup Users.
Search for the player you want to ban using their credentials. The search results appear.
Click View in Action to open the account. The user account details appear.
Click Bans, and then click Add Ban to ban the selected user. The Add Ban settings appear.
Add the device ban details
In Ban type, choose Device Ban.
In Device ID, choose the device you want to ban. A list of the devices used to log in by this player appears in this menu.
In Ban Expiration, select one of the following:
- Set by duration: Enter the number of minutes, hours, or days you want the player to be banned for. The ban expires after this duration.
- Set by expiration date: Enter the date and time you want the ban to expire.
- Never: Set a permanent ban.
In Reason, choose a reason for the ban dropdown list.
Type a Comment to include any relevant information about the ban.
Click Ban. The ban appears in the Bans list.
Enable and disable ban
You can reactivate an expired or disabled ban on a player, or lift an existing ban on a player. To do this:
In the Admin Portal, go to Live Service Utilities > Lookup Users.
Search the user account to view the account edit history. The search results appear.
Browse the list to find the account you are looking for and click View in the Action column of the account listing to open it.
Click Bans to ban the selected user. All the bans that have ever been applied to the player are displayed.
Click Disable under the Action column of the selected ban to disable the ban or click Enable under the Action column to enable the selected ban.
The Disable Ban confirmation message appears. Click Enable or Disable to ban or un-ban the player.
After you disable the ban, the player will be able to access the game or the feature they were banned from. If you enable a ban for a player, the player will now be banned from accessing the game or from the specific feature.
Ban or un-ban a player
Use the following server-side code to ban a player.
string playerUserID = "exampleuserid2434";
BanType banType = BanType.LOGIN;
BanReason banReason = BanReason.CHEATING;
var banEndDate = System.DateTime.UtcNow.AddDays(value: 365);
banEndDate = banEndDate.AddDays(365);
string comment = "This player was caught cheating";
bool notifyUserEmail = false;
string banId = string.Empty;
AccelByteSDK.GetServerRegistry().GetApi().GetUserAccount().BanUser(playerUserID, banType, banReason, banEndDate, comment, notifyUserEmail, result =>
{
if (!result.IsError)
{
Debug.Log("Success. The player is banned.");
}
else
{
Debug.Log("Failed to ban the player. Error : " + result.Error.ToString());
}
});
banId could be used to un-ban the player.
AccelByteSDK.GetServerRegistry().GetApi().GetUserAccount().ChangeUserBanStatus(
userId: playerUserID,
banId: banId,
enabled: false,
(result) =>
{
if (result.IsError)
{
Debug.Log("Success. Player is unbanned.");
}
else
{
Debug.Log("Failed to un-ban the player. Error : " + result.Error.ToString());
}
}
);
Ban notifications
Use the following code to implement ban notifications on the client side. Using this method, players can be told that they have been banned and the reason why.
AccelByteSDK.GetClientRegistry().GetApi().GetLobby().UserBannedNotification += result =>
{
Debug.Log("You have been banned. Reason: " + result.Value.reason);
};