Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pay
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bp
pay
Commits
d0b7b5f8
Commit
d0b7b5f8
authored
Jul 17, 2021
by
万继龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into 'test'
add: fix HttpUtil::post bug See merge request bp/pay!21
parents
a1e03fe5
ed6531e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Sdk.php
application/library/Helpers/Sdk.php
+3
-1
No files found.
application/library/Helpers/Sdk.php
View file @
d0b7b5f8
...
...
@@ -4,6 +4,7 @@ namespace Helpers;
use
Api\PhpUtils\Log\FileLog
;
use
Helpers\Tracer
;
use
Api\PhpUtils\Http\HttpUtil
;
use
Api\PhpUtils\Http\Request
;
use
App\Exception\BaseException
;
/**
...
...
@@ -27,7 +28,8 @@ class Sdk {
];
$headers
=
array_merge
(
$headers
,
$header
);
$data
=
HttpUtil
::
post
(
$url
,
$params
,
2000
,
1
,
$headers
);
//$data = HttpUtil::post($url, $params, 2000, 1, $headers);
$data
=
(
new
Request
())
->
post
(
$url
,
$params
,
2000
,
'json'
,
$headers
);
/*
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment