Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kezhengjie/meituan-game-sdk-php
https://github.com/kezhengjie/meituan-game-sdk-php
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kezhengjie/meituan-game-sdk-php
- Owner: kezhengjie
- License: mit
- Created: 2021-03-24T07:25:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-24T10:52:51.000Z (almost 4 years ago)
- Last Synced: 2024-12-25T03:22:21.379Z (10 days ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meituan-game-sdk-php
## 1.说明
美团游戏开放平台 支付成功通知 支付回调php demo
美团只提供了java版本,这边实现了php版本
美团游戏开发者文档网址 https://mgc.meituan.com/open/#/docs规则是 随机16字节+ 数据 n字节 + tag 16字节
## 2.用法
```
$appId = "appid here";
$appSecret = "app secret here";
$secretKey = meituan::createKey($appId . "&" . $appSecret);
$data = "miwen";
$sign = meituan::encryptSHA1Str($data . $secretKey); //useless// key 是base64_encode 后的;
// key is a base64_encode value;
meituan::decryptWithAESGCM256($secretKey, $data);
```