GetRankRewardList
BackendReturnObject GetRankRewardList(string rankUuid);
The URank ranking method can only look up NULL groups in grouped leaderboards.
If you want to check leaderboards according to groups, use the Leaderboard method.
Parameter
Value | Type | Description |
---|---|---|
rankUuid | string | uuid of the ranking to look up |
The rankUuid value can be checked using the following methods:
- Create a ranking in BACKND Console and check the uuid value from the information of the ranking
- Check the uuid value using the Look up ranking information of all guilds method
Description
Looks up the reward information of the ranking using a uuid value.
This method is to look up the reward information of the ranking registered in the console, not to receive ranking rewards.
For more information on how to receive ranking rewards, please refer to the Look up mail and Receive mail documentation.
Example
Synchronous
Backend.URank.Guild.GetRankRewardList("rankUuid");
Asynchronous
Backend.URank.Guild.GetRankRewardList("rankUuid", callback => {
// Post-process
});
SendQueue
SendQueue(Backend.URank.Guild.GetRankRewardList, "rankUuid", callback => {
// Post-process
});
ReturnCase
Success cases
When the lookup is successful
statusCode : 200
message : Success
returnValue : refer to GetReturnValuetoJSON
Error cases
When the uuid is null or string.Empty
statusCode : 400
errorCode : ValidationException
message : rankUuid is null or empty
When there is an attempt to look up with a non-existent uuid
statusCode : 404
errorCode : NotFoundException
message : rank not found, rank cannot be found
When there is an attempt to look up with a uuid that has no reward
statusCode : 404
errorCode : NotFoundException
message : rank reward not found, rank reward cannot be found
GetReturnValuetoJSON
{
"rows": [
{
// Ranking reward item information
"rewardItems": {
// Item information
},
// First rank that will receive the ranking reward
"startRank": "1",
// Last rank that will receive the ranking reward
"endRank": "1",
// Number of items to be awarded
"rewardItemCount": "1",
// Name of the chart containing item information
"rewardChartName": "weaponTable"
},
// and etc...
]
}
Sample Code
public class RankRewardItem
{
public int startRank;
public int endRank;
public int rewardItemCount;
public string rewardChartName;
public Dictionary<string, string> rewardItems = new Dictionary<string, string>();
public override string ToString()
{
string str = string.Empty;
foreach(var dic in rewardItems)
{
str += $"Reward : {dic.Key} : {dic.Value}\n";
}
return $"startRank : {startRank}\n" +
$"endRank : {endRank}\n" +
$"rewardItemCount : {rewardItemCount}\n" +
$"rewardChartName : {rewardChartName}\n" + str;
}
}
public void GetRankRewardList()
{
BackendReturnObject bro = Backend.URank.User.GetRankRewardList("9b41d1c0-8ef0-11ec-b651-c7dd98f693dc");
if(!bro.IsSuccess())
{
Debug.LogError(bro.ToString());
return;
}
List<RankRewardItem> rankRewardList = new List<RankRewardItem>();
LitJson.JsonData rankRewardListJson = bro.FlattenRows();
for(int i = 0; i < rankRewardListJson.Count; i++)
{
RankRewardItem rankRewardItem = new RankRewardItem();
rankRewardItem.rewardItemCount = int.Parse(rankRewardListJson[i]["rewardItemCount"].ToString());
rankRewardItem.startRank = int.Parse(rankRewardListJson[i]["startRank"].ToString());
rankRewardItem.endRank = int.Parse(rankRewardListJson[i]["endRank"].ToString());
rankRewardItem.rewardChartName = rankRewardListJson[i]["rewardChartName"].ToString();
foreach(var column in rankRewardListJson[i]["rewardItems"].Keys)
{
rankRewardItem.rewardItems.Add(column, rankRewardListJson[i]["rewardItems"][column].ToString());
}
rankRewardList.Add(rankRewardItem);
Debug.Log(rankRewardItem.ToString());
}
}