Interface for receiving gift packages
Introduction to Points Mall: Points Mall has a cumulative coverage of 2 million users, a total of 7.5W redemption users, a total of 200,000 redemptions, 6K-10,000 new people added every day, and more than 300 product types, covering electronics, digital, and home furnishings. Exposure picture of the points mall homepage in various fields such as life, game peripherals, toys and models, etc.
:
Most For good recommendations, the number of daily clicks is maintained at around 20,000. When new products are launched, a three-day schedule will be arranged for first-focus promotion. Currently, there are Legend of the Three Kingdoms, My Name is MT2, Tiantian Westward Journey Cool Running, Golden Toad Fishing, and Tricks More than ten kinds of gift packages such as Three Kingdoms are connected to the points mall. The points mall has opened a game gift package area
Gift package details page:
1. During the golden period of game promotion, package welfare highlights in gift packages, with more reasons and Opportunities are given priority to apply for public promotion resources
2. The points mall is fully promoted, uv2w in a single day, the number of gift packs that can be consumed in a single month is 1w-2w, and it can continuously guide 2000 users into the game every day. Every user who successfully redeems points can jump directly into the game!
The points amount applied for in general games are as follows:
1. Different product stars will have their own Monthly total prize pool and TOP prize limits; non-TOP prizes cannot exceed 1/3 of the TOP prize
product star rating | Available every month | One time per user Activity | Single activity | Monthly Cumulative |
Single Generation S | 300000 | 2000 | 8 | 24 |
Connected TransportS | ##200000 | 1500 | 6 | ##18 |
Intermodal Transport A | 150000 | ##10006 |
| 18
2. Use the DAU of the game in the last week as a reference to compare all the above data Bonuses can be added as follows:
Weekly average DAU | Bonus | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
##1.5 times | 6000~30,000 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1.0 times | Under 6000 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0.5 times | For example: a single-generation product of 5000DAU can be issued to a maximum of 1500 points per user, and can be issued to a maximum of 12 people per month.
Attachment: The gift package is completed and the material requirements provided 1. Promotional pictures, 3 JPGs, 690*450, 600*600, 240*156 2. Gift package description: 150-300 words
Client receiving gift package interface
Get gift package information interface
Interface description: Get the gift pack list, suitable for stand-alone APP to receive the gift pack in the APP, call this interface to get the gift pack code list. Prerequisites: Requires login authorization Function prototype: public static void queryGifts(final IGetGiftListListener listener) Callback interface prototype: public static interface IGetGiftListListener { public void onGetGiftListSuccess(List<Gift> list); public void onGetGiftListError(String errMsg); } public static class Gift { private String cpItemId; private Long giftId; private Long status
Receive giftPackage
Interface description : Receive the gift and get the corresponding gift package ID from the obtained gift package code ID list Prerequisites : ## 1. You need to first get the giftId of the purchasable product through the "Get Gift Package Information" interface 2. Requires login authorization Function prototype: public static void takeGifts(long giftId, ITakeGiftListener listener) Parameter description: giftId The ID to receive the gift listenerreceives the callback returned by the server
Callback interface prototype: ##public static interface ITakeGiftListener { public void onTakeGiftListSuccess(boolean isSuccess); public void onTakeGiftListError(String errMsg); }
Server-side gift package receiving interface
Get gift package information Interface
Interface description: When the user receives it through various channels After the APP gift package is released, when the APP is launched, the APP client/server can query the backend of the Digital Entertainment APP to see if the user has any gift packages that need to be issued. If the query is successful, a record list is returned. Prerequisites: Requires login authorization Function prototype: ##http://gateway.6uu.com/coin/query_game_gift_record.action?user_str_id=xxx&app_str_id=xxx&game_item_id=xxx &status=0&ts= xxx&sign=xxx Parameter description:
|