Skip to content

Commit 1f9f76e

Browse files
chore: 修改demo.修改README等其它相关.
1 parent a9df4f5 commit 1f9f76e

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 shinn lancelot
3+
Copyright (c) 2018-present shinn_lancelot
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,12 @@
55

66
### MiniProgramSDK是什么
77

8-
MiniProgramSDK是一个PHP的小程序开发包。封装微信小程序后端相关接口,比如php端微信用户信息解密(微信登录)、获取小程序码等等。
8+
MiniProgramSDK是一个PHP的小程序开发包。封装微信小程序后端相关接口,比如解密信息(用户信息、手机号)、获取小程序码等。
99

1010
### 项目文档
1111

1212
[MiniProgramSDK Document](https://hillpy.github.io/MiniProgramSDK/v1/)
1313

14-
### TODO
15-
16-
~~1. 微信用户数据解密~~
17-
18-
~~2. 小程序二维码、小程序码~~
19-
2014
### 仓库地址
2115

2216
[Github](https://github.com/hillpy/MiniProgramSDK "MiniProgramSDK")<br>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hillpy/mini-program-sdk",
3-
"description": "微信小程序后端php开发包,封装微信小程序php端相关接口,比如php端微信用户信息解密(即登陆功能)、获取sessionKey、获取小程序码等",
3+
"description": "MiniProgramSDK是一个PHP的小程序开发包。封装微信小程序后端相关接口,比如解密信息(用户信息、手机号)、获取小程序码等",
44
"keywords": ["小程序", "miniprogram", "微信", "wechat"],
55
"type": "library",
66
"license": "MIT",

demo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
echo 'accessToken:' . $accessToken . '<br>';
4444
}
4545

46-
// 解密登录用户数据
46+
// 客户端请求参数
4747
$paramArr['code'] = isset($_POST['code']) ? $_POST['code'] : '';
4848
$paramArr['rawData'] = isset($_POST['rawData']) ? $_POST['rawData'] : '';
4949
$paramArr['signature'] = isset($_POST['signature']) ? $_POST['signature'] : '';

0 commit comments

Comments
 (0)