Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
462a1cec
...
462a1ceca3888f339238a8939a2bd7ec9cafad54
authored
2022-10-26 16:36:00 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
25ad4ce1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
462a1ce
...
...
@@ -100,17 +100,12 @@ class BaseController extends Controller
];
*/
$data
=
[
"businessId"
=>
1421483
,
"queryType"
=>
"track"
,
"brandId"
=>
7389
];
Log
::
channel
(
'api'
)
->
info
(
__METHOD__
.
'get请求参数'
,
[
'token'
=>
$token
,
'url'
=>
$url
,
'data'
=>
$data
]);
//
Log::channel('api')->info(__METHOD__.'get请求参数', ['token'=>$token, 'url'=>$url, 'data'=>$data]);
$response
=
$this
->
client
->
request
(
'GET'
,
$url
,
[
'query'
=>
[
"businessId"
=>
$params
[
"businessId"
],
"businessId"
=>
(
int
)
$params
[
"businessId"
],
"queryType"
=>
$params
[
"queryType"
],
"brandId"
=>
$params
[
"brandId"
]
"brandId"
=>
(
int
)
$params
[
"brandId"
]
],
'headers'
=>
$headers
]);
break
;
...
...
Please
register
or
sign in
to post a comment