UPDATE docs

This commit is contained in:
yansongda 2018-02-01 16:39:01 +08:00
parent dc3f41a5ba
commit d86c727244
2 changed files with 46 additions and 9 deletions

29
docs/others/faq.md Normal file
View File

@ -0,0 +1,29 @@
# FAQ
1. 支付宝支付成功,但是对返回数据验签老是失败。
绝大部分问题都是配置问题,首先请确认 **正确填写了支付宝公钥(注意不是应用公钥)**
如果还没解决,请参考 github 的 issue[https://github.com/yansongda/pay/issues/73](https://github.com/yansongda/pay/issues/73)
2. 我是做 API 的,怎样可以不用 send 出 Response 中的内容?
返回的 Response 中,`$response->getContent()` 可获取内容RedirectResponse 中,`$response->getTargetUrl()` 可获取跳转链接JsonResponse 中,`$response->getContent()` 可获取Json。
3. cURL error 60: SSL certificate problem: unable to get local issuer certificate
服务器环境配置问题。
请参考 [https://github.com/yansongda/pay/issues/16](https://github.com/yansongda/pay/issues/16)
4. 是否支持其他支付平台?比如:银联、京东。
由于使用限制,暂不支持。
欢迎 PR
5. 支付宝是否支持 AES 等加密方式?
因为支付宝推荐 RSA2 ,所以不推荐也不支持除 **RSA2** 以外的任何加密方式!

View File

@ -11,24 +11,32 @@ SDK 自带日志系统,如果需要指定日志文件或日志级别,请 con
## 使用日志功能
> 使用日志功能前,请先确认已经使用过支付等功能进行了初始化!
```php
use Yansongda\Pay\Log;
Log::debug('Paying...', $order->all());
```
# 沙箱模式
支付宝及微信均提供了沙箱测试模式,如果需要启动,请 config 中传入下列参数。
```php
'mode' => 'dev',
```
## 支持的模式
# 支持的模式
| 支付 | 模式 | 说明 |
| :---: | :---: | :---: |
| alipay | dev | 沙箱模式 |
| wechat | dev | 沙箱模式 |
| wechat | hk | 东南亚节点 |
## 沙箱模式
支付宝及微信均提供了沙箱测试模式,如果需要启动,请 config 中传入下列参数。
```php
['mode' => 'dev']
```
### 关于微信沙箱模式
微信沙箱模式与支付宝沙箱模式不同也没有支付宝沙箱模式那样简单SDK 只对微信支付 API 进行了沙箱处理,所以,在测试微信时,推荐直接使用正式环境 *¥0.01* 进行测试。
详细请参考 [https://github.com/yansongda/pay/issues/62](https://github.com/yansongda/pay/issues/62)