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
e03f0bbf
...
e03f0bbf6bdced898a8ebade1735d445249d215a
authored
2022-10-26 16:30:38 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
5e33cd96
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
e03f0bb
...
...
@@ -92,11 +92,19 @@ class BaseController extends Controller
switch
(
strtoupper
(
$method
))
{
case
'GET'
:
/*
$data = [
"businessId"=>194159,
"queryType"=>"album",
"brandId"=>7389
];
*/
$data
=
[
"businessId"
=>
1421483
,
"queryType"
=>
"track"
,
"brandId"
=>
7389
];
Log
::
channel
(
'api'
)
->
info
(
__METHOD__
.
'get请求参数'
,
[
'token'
=>
$token
,
'url'
=>
$url
,
'data'
=>
$data
]);
$response
=
$this
->
client
->
request
(
'GET'
,
$url
,
[
'query'
=>
$data
,
'headers'
=>
$headers
]);
...
...
Please
register
or
sign in
to post a comment