Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
Overview
Overview
Details
Activity
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
pseer
gxpt_ht
Commits
2f52bd75
Commit
2f52bd75
authored
Feb 28, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉抖音权限过期错误自动获取权限
parent
fe1d8cb0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
28 deletions
+28
-28
TiktokServiceImpl.java
...ain/java/share/system/service/impl/TiktokServiceImpl.java
+28
-28
No files found.
share-system/src/main/java/share/system/service/impl/TiktokServiceImpl.java
View file @
2f52bd75
...
...
@@ -155,10 +155,10 @@ public class TiktokServiceImpl implements TiktokService {
}
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
prepare
(
tiktokCouponDto
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
prepare(tiktokCouponDto);
//
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音验券准备失败:{}"
,
data
.
getStr
(
"description"
));
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
...
...
@@ -181,10 +181,10 @@ public class TiktokServiceImpl implements TiktokService {
.
body
(
jsonObject
.
toString
()).
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
verify
(
tiktokCouponDto
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
verify(tiktokCouponDto);
//
}
JSONObject
extra
=
entries
.
getJSONObject
(
"extra"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
())
&&
((
JSONObject
)
data
.
getJSONArray
(
"verify_results"
).
get
(
0
)).
getStr
(
"result"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
return
data
;
...
...
@@ -210,10 +210,10 @@ public class TiktokServiceImpl implements TiktokService {
.
body
(
jsonObject
.
toString
()).
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
cancel
(
tiktokCouponDto
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
cancel(tiktokCouponDto);
//
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音撤销核销失败:{}"
,
data
.
getStr
(
"description"
));
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
...
...
@@ -237,10 +237,10 @@ public class TiktokServiceImpl implements TiktokService {
.
form
(
"encrypted_code"
,
encode
).
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
certificateGet
(
encryptedCode
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
certificateGet(encryptedCode);
//
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音获取核销信息失败:{}"
,
data
.
getStr
(
"description"
));
throw
new
BaseException
(
data
.
getStr
(
"description"
));
...
...
@@ -261,10 +261,10 @@ public class TiktokServiceImpl implements TiktokService {
.
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
poiQuery
(
tiktokCouponDto
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
poiQuery(tiktokCouponDto);
//
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
}
...
...
@@ -298,10 +298,10 @@ public class TiktokServiceImpl implements TiktokService {
.
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
onlineQuery
(
onlineQueryDto
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
onlineQuery(onlineQueryDto);
//
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
}
...
...
@@ -319,10 +319,10 @@ public class TiktokServiceImpl implements TiktokService {
.
execute
().
body
();
JSONObject
entries
=
new
JSONObject
(
result
);
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
onlineGet
(
productIds
,
accountId
);
}
//
if (data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_INVALID.getCode()) | data.getStr("error_code").equals(ErrorCodeEnum.ACCESS_TOKEN_EXPIRE.getCode())) {
//
clientToken();
//
onlineGet(productIds, accountId);
//
}
return
data
;
}
...
...
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