key and secret must be 81
This commit is contained in:
parent
64e5921a25
commit
0c3185691a
|
|
@ -15,14 +15,15 @@ return [
|
||||||
'label' => 'Sandbox Client ID',
|
'label' => 'Sandbox Client ID',
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
'rules' => 'required|min:3|max:5',
|
'rules' => 'required|size:80',
|
||||||
'description' => '沙盒模式 Client ID',
|
'description' => '沙盒模式 Client ID',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'sandbox_Secret',
|
'name' => 'sandbox_secret',
|
||||||
'label' => 'Sandbox Secret',
|
'label' => 'Sandbox Secret',
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
|
'rules' => 'required|size:80',
|
||||||
'description' => '沙盒模式 Secret',
|
'description' => '沙盒模式 Secret',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|
@ -30,13 +31,15 @@ return [
|
||||||
'label' => 'Live Client ID',
|
'label' => 'Live Client ID',
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
|
'rules' => 'required|size:80',
|
||||||
'description' => '正式环境 Client ID',
|
'description' => '正式环境 Client ID',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'live_Secret',
|
'name' => 'live_secret',
|
||||||
'label' => 'Live Secret',
|
'label' => 'Live Secret',
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
'required' => true,
|
'required' => true,
|
||||||
|
'rules' => 'required|size:80',
|
||||||
'description' => '正式环境 Secret',
|
'description' => '正式环境 Secret',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue