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
574ae4a7
...
574ae4a7932243bc866b0e481b06f5add7555350
authored
2022-10-26 15:02:42 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
*
1 parent
17bcb177
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
app/Http/Controllers/Release/BaseController.php
app/Http/Controllers/Release/BaseController.php
View file @
574ae4a
...
...
@@ -91,7 +91,11 @@ class BaseController extends Controller
$headers
=
$this
->
parseHeaders
(
$params
);
switch
(
strtoupper
(
$method
))
{
case
'GET'
:
$response
=
$this
->
client
->
request
(
'GET'
,
$url
,
[
'query'
=>
$params
,
'headers'
=>
$headers
]);
$response
=
$this
->
client
->
request
(
'GET'
,
$url
,
[
'query'
=>
[
"businessId"
=>
482946
,
'queryType'
=>
'album'
,
'brandId'
=>
$params
[
'tmeBrandId'
]
],
'headers'
=>
$headers
]);
break
;
case
'POST'
:
default
:
...
...
Please
register
or
sign in
to post a comment