GetPostList(PostType.Coupon)
public BackendReturnObject GetPostList(PostType.Coupon);
public BackendReturnObject GetPostList(PostType.Coupon, int limit);
파라미터
Value | Type | Description |
---|---|---|
postType | PostType | 불러올 우편의 종류 |
limit | int | 불러올 우편의 갯수. 최소 10개, 최대 100개. 미입력 시 limit은 10개로 지정됩니다. |
limit이 10 미만일 경우, 10으로 고정됩니다.
PostType
Value | Description |
---|---|
Admin | 콘솔에서 발송하는 관리자 우편 |
Rank | 랭킹 결산 후 자동으로 지급되는 랭킹 우편 |
Coupon | 뒤끝 콘솔의 웹 쿠폰 설정에서 생성한 페이지로 쿠폰을 사용 후 발송되는 쿠폰 우편 |
User | 유저끼리 자신의 데이터를 이용하여 발송한 유저 우편 |
설명
우편 종류(PostType)에 따른 우편 리스트를 불러옵니다.
각 PostType의 종류마다 리턴값에 추가된 값이 존재하거나 없을 수 있으므로 아래 GetReturnValuetoJSON()을 참고해주시기 바랍니다.
유저 우편의 경우, 관리자 우편과 랭킹 우편과는 Json 타입이 크게 다를 수 있으므로 주의해주시기 바랍니다.
- 리턴값에 기존 우편 기능(Backend.Social.Post) 리턴값에 존재했던 데이터 타입 "S", "L", "M"이 존재하지 않습니다.
- 쿠폰 우편의 title은
뒤끝 콘솔 > 쿠폰 관리
에서 생성한 쿠폰의 제목입니다. - 쿠폰 우편은 콘솔에서 발송 가능한 타 우편과는 달리 title, inDate, items 3가지의 리턴값만 가지고 있습니다.
- 쿠폰 우편의 만료일은 무제한입니다. 쿠폰 사용이 가능한 기간동안 쿠폰을 사용하여 우편을 받을 경우 해당 우편은 기간이 무제한인 우편으로 발송됩니다.
- 쿠폰 우편의 경우 아이템 수령 시 아이템이 자동으로 삭제됩니다.
- 쿠폰 우편의 수령 여부는 확인하는 기능은 제공하고 있지 않습니다.
Example
동기
BackendReturnObject bro = Backend.UPost.GetPostList(PostType.Coupon, 10);
LitJson.JsonData json = bro.GetReturnValuetoJSON()["postList"];
for(int i = 0; i < json.Count; i++) {
Debug.Log("제목 : " + json[i]["title"].ToString());
Debug.Log("inDate : " + json[i]["inDate"].ToString());
}
비동기
Backend.UPost.GetPostList(PostType.Coupon, 10, callback => {
LitJson.JsonData json = callback.GetReturnValuetoJSON()["postList"];
for(int i = 0; i < json.Count; i++) {
Debug.Log("제목 : " + json[i]["title"].ToString());
Debug.Log("inDate : " + json[i]["inDate"].ToString());
}
});
SendQueue
SendQueue.Enqueue(Backend.UPost.GetPostList, PostType.Coupon, 10, callback => {
LitJson.JsonData json = callback.GetReturnValuetoJSON()["postList"];
for(int i = 0; i < json.Count; i++) {
Debug.Log("제목 : " + json[i]["title"].ToString());
Debug.Log("inDate : " + json[i]["inDate"].ToString());
}
});
ReturnCase
Success cases
우편 불러오기에 성공한 경우
statusCode : 200
message : Success
returnValue : GetReturnValuetoJSON 참조
불러올 우편이 없을 경우
statusCode : 200
message : Success
returnValue : { "postList" : []}
GetReturnValuetoJSON
쿠폰 우편
쿠폰 우편의 경우, 아이템이 0개인 우편, 아이템이 1개인 우편, 아이템이 2개 이상인 우편이 존재하므로 주의하여 파싱해주시기 바랍니다.
{
"postList": [
{
"inDate": "2022-12-12T03:09:26.789Z",
"items": [],
"title": "쿠폰 아이템 0개"
},
{
"inDate": "2022-12-12T03:09:26.789Z",
"items": [
{
"item": {
"chartFileName": "chartExample.xlsx",
"itemID": "i101",
"itemName": "아이템1",
"hpPower": "1",
"num": "1"
},
"itemCount": 1,
"chartName": "차트"
},
{
"item": {
"chartFileName": "chartExample.xlsx",
"itemID": "i102",
"itemName": "item2",
"hpPower": "2",
"num": "2"
},
"itemCount": 2,
"chartName": "차트"
}
],
"title": "아이템 2개"
},
{
"inDate": "2022-12-12T03:09:18.240Z",
"items": [
{
"item": {
"chartFileName": "chartExample.xlsx",
"itemID": "i101",
"itemName": "아이템1",
"hpPower": "1",
"num": "1"
},
"itemCount": 1,
"chartName": "차트"
}
],
"title": "아이템 1개"
}
]
}
Sample Code
해당 예제는 관리자 우편, 랭킹 우편, 쿠폰 우편에서 공통적으로 사용가능합니다.
public class UPostChartItem {
public string chartFileName;
public string itemID;
public string itemName;
public string hpPower;
public int itemCount;
public override string ToString() {
return
"item : \n" +
$"| chartFileName : {chartFileName}\n" +
$"| itemID : {itemID}\n" +
$"| itemName : {itemName}\n" +
$"| itemCount : {itemCount}\n" +
$"| hpPower : {hpPower}\n";
}
}
public class UPostItem {
public PostType postType;
public string title;
public string content;
public DateTime expirationDate;
public DateTime reservationDate;
public DateTime sentDate;
public string nickname;
public string inDate;
public string author; // 관리자 우편만 존재합니다.
public string rankType; // 랭킹 우편만 존재합니다.
public List<UPostChartItem> items = new List<UPostChartItem>();
public override string ToString() {
string totalString =
$"title : {title}\n" +
$"inDate : {inDate}\n";
if(postType == PostType.Admin || postType == PostType.Rank) {
totalString +=
$"content : {content}\n" +
$"expirationDate : {expirationDate}\n" +
$"reservationDate : {reservationDate}\n" +
$"sentDate : {sentDate}\n" +
$"nickname : {nickname}\n";
if(postType == PostType.Admin) {
totalString += $"author : {author}\n";
}
if(postType == PostType.Rank) {
totalString += $"rankType : {rankType}\n";
}
}
string itemList = string.Empty;
for(int i = 0; i < items.Count; i++) {
itemList += items[i].ToString();
itemList += "\n";
}
totalString += itemList;
return totalString;
}
}
public void GetPostListTest() {
int limit = 100;
PostType postType = PostType.Coupon;
BackendReturnObject bro = Backend.UPost.GetPostList(postType, limit);
if(!bro.IsSuccess()) {
Debug.LogError(bro.ToString());
return;
}
LitJson.JsonData postListJson = bro.GetReturnValuetoJSON()["postList"];
List<UPostItem> postItemList = new List<UPostItem>();
for(int i = 0; i < postListJson.Count; i++) {
UPostItem postItem = new UPostItem();
postItem.inDate = postListJson[i]["inDate"].ToString();
postItem.title = postListJson[i]["title"].ToString();
postItem.postType = postType;
if(postType == PostType.Admin || postType == PostType.Rank) {
postItem.content = postListJson[i]["content"].ToString();
postItem.expirationDate = DateTime.Parse(postListJson[i]["expirationDate"].ToString());
postItem.reservationDate = DateTime.Parse(postListJson[i]["reservationDate"].ToString());
postItem.nickname = postListJson[i]["nickname"]?.ToString();
postItem.sentDate = DateTime.Parse(postListJson[i]["sentDate"].ToString());
if(postListJson[i].ContainsKey("author")) {
postItem.author = postListJson[i]["author"].ToString();
}
if(postListJson[i].ContainsKey("rankType")) {
postItem.author = postListJson[i]["rankType"].ToString();
}
}
if(postListJson[i]["items"].Count > 0) {
for(int itemNum = 0; itemNum < postListJson[i]["items"].Count; itemNum++) {
UPostChartItem item = new UPostChartItem();
item.itemCount = int.Parse(postListJson[i]["items"][itemNum]["itemCount"].ToString());
item.chartFileName = postListJson[i]["items"][itemNum]["item"]["chartFileName"].ToString();
item.itemID = postListJson[i]["items"][itemNum]["item"]["itemID"].ToString();
item.itemName = postListJson[i]["items"][itemNum]["item"]["itemName"].ToString();
item.hpPower = postListJson[i]["items"][itemNum]["item"]["hpPower"].ToString();
postItem.items.Add(item);
}
}
postItemList.Add(postItem);
Debug.Log(postItem.ToString());
}
}