Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-micro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
without authentication
meibuyu-micro
Commits
442a5616
Commit
442a5616
authored
Feb 21, 2022
by
王源
🎧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
编写shopify对非私人应用的token值处理
(cherry picked from commit
da3c6843
)
parent
af89a3c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
AbstractShopify.php
src/Shopify/lib/AbstractShopify.php
+13
-4
No files found.
src/Shopify/lib/AbstractShopify.php
View file @
442a5616
...
@@ -64,12 +64,21 @@ abstract class AbstractShopify
...
@@ -64,12 +64,21 @@ abstract class AbstractShopify
$this
->
pluralizeKey
=
$this
->
pluralizeKey
?:
$this
->
resourceKey
.
's'
;
$this
->
pluralizeKey
=
$this
->
pluralizeKey
?:
$this
->
resourceKey
.
's'
;
$this
->
resourceUrl
=
(
$parentResourceUrl
?
"
$parentResourceUrl
/"
:
$config
[
'api_url'
])
.
$this
->
pluralizeKey
.
(
$this
->
id
?
"/
{
$this
->
id
}
"
:
''
);
$this
->
resourceUrl
=
(
$parentResourceUrl
?
"
$parentResourceUrl
/"
:
$config
[
'api_url'
])
.
$this
->
pluralizeKey
.
(
$this
->
id
?
"/
{
$this
->
id
}
"
:
''
);
$this
->
httpRequestJson
=
make
(
CurlHttpRequestJson
::
class
);
$this
->
httpRequestJson
=
make
(
CurlHttpRequestJson
::
class
);
if
(
isset
(
$config
[
'is_private_app'
])
&&
$config
[
'is_private_app'
]
==
false
)
{
// 如果不是私人应用,则使用访问令牌
if
(
isset
(
$config
[
'access_token'
]))
{
$this
->
httpHeaders
[
'X-Shopify-Access-Token'
]
=
$config
[
'access_token'
];
}
elseif
(
!
isset
(
$config
[
'access_token'
]))
{
throw
new
Exception
(
"请设置access_token值"
);
}
}
else
{
if
(
isset
(
$config
[
'api_password'
]))
{
if
(
isset
(
$config
[
'api_password'
]))
{
$this
->
httpHeaders
[
'X-Shopify-Access-Token'
]
=
$config
[
'api_password'
];
$this
->
httpHeaders
[
'X-Shopify-Access-Token'
]
=
$config
[
'api_password'
];
}
elseif
(
!
isset
(
$config
[
'api_password'
]))
{
}
elseif
(
!
isset
(
$config
[
'api_password'
]))
{
throw
new
Exception
(
"请设置api_password值"
);
throw
new
Exception
(
"请设置api_password值"
);
}
}
}
}
}
/**
/**
* 调用子集资源
* 调用子集资源
...
...
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