|
@@ -9,10 +9,54 @@
|
|
|
|
|
|
- Calling interface : url:https://hall.stag-topgame.com
|
|
|
|
|
|
+
|
|
|
+- Parameter analysis of successful results
|
|
|
+
|
|
|
+| Name | Type | Required | Description |
|
|
|
+| -------- | -------- | -------- | -------- |
|
|
|
+| gameicourl | string | Y | Request game entry icon address |
|
|
|
+| gameurl| string| Game link address |
|
|
|
+| gamelist.name |string | Game Name |
|
|
|
+| gamelist.gid| string(20) | Unique id to enter the game |
|
|
|
+| gamelist.gametype |string | Game Type |
|
|
|
+| gamelist.hot| int | 1 represents the tag of popular games, 0 does not |
|
|
|
+| gamelist.new| int | 1 represents the new game tag, 0 does not |
|
|
|
+
|
|
|
+
|
|
|
+- Successful Result
|
|
|
+```
|
|
|
+{
|
|
|
+ "gameicourl": "http://127.0.0.1:8000/gameicon",
|
|
|
+ "gamelist": [
|
|
|
+ {
|
|
|
+ "gid": "be001",
|
|
|
+ "name": "Dragon Stash",
|
|
|
+ "gametype": "1",
|
|
|
+ "hot": 1,
|
|
|
+ "new": 0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "gid": "be002",
|
|
|
+ "name": "Jungle Fruit",
|
|
|
+ "gametype": "1",
|
|
|
+ "hot": 1,
|
|
|
+ "new": 1
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
### 2、Call interface instance:
|
|
|
- calling interface url + Jump parameter
|
|
|
> https://hall.stag-topgame.com/?tt=3F6AE577A2E2255EF4BACF02C9F8BB1154A9C6AD2F19701&lang=en
|
|
|
|
|
|
Parameter description:
|
|
|
- Parameter tt:The key is obtained by getting the key interface (api/game/getKey)
|
|
|
- Parameter lang: The language to display
|
|
|
+
|
|
|
+
|
|
|
+| Param | Type | Description |
|
|
|
+| -------- | -------- | -------- |
|
|
|
+| tt | string | The key is obtained by getting the key interface (api/game/getKey) |
|
|
|
+|lang| string| The language to display |
|
|
|
+
|
|
|
+### 3、Hall Example
|
|
|
+
|