| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Yxy\Service;
- interface GameDownServiceInterface
- {
- /**
- * 获取游戏下载token 及密码
- * @param int $game_id 游戏ID
- * @param int $promote_id 渠道ID 渠道ID为空则返回官方链接
- * @return mixed
- */
- public function createGameDownToken(int $game_id, int $promote_id = 0);
- /**
- * 获取游戏下载地址
- * @param string $game_id 游戏ID
- * @param string|int $promote_id 渠道ID
- * @param int $time 有效期(秒)
- * @return mixed
- */
- public function downUrl(string $game_id, $promote_id = 0, int $time = 100);
- /**
- * 获取加密游戏下载地址
- * @param string $token 临时token
- * @param string $password 对应密码
- * @return mixed
- */
- public function createGameDownUrl(string $token, string $password);
- }
|