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
e55eb479
Commit
e55eb479
authored
Mar 05, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改报token失效
parent
4238c280
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
TiktokServiceImpl.java
...ain/java/share/system/service/impl/TiktokServiceImpl.java
+7
-7
No files found.
share-system/src/main/java/share/system/service/impl/TiktokServiceImpl.java
View file @
e55eb479
...
@@ -158,7 +158,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -158,7 +158,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
prepare
(
tiktokCouponDto
);
return
prepare
(
tiktokCouponDto
);
}
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音验券准备失败:{}"
,
data
.
getStr
(
"description"
));
logger
.
error
(
"抖音验券准备失败:{}"
,
data
.
getStr
(
"description"
));
...
@@ -184,7 +184,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -184,7 +184,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
verify
(
tiktokCouponDto
);
return
verify
(
tiktokCouponDto
);
}
}
JSONObject
extra
=
entries
.
getJSONObject
(
"extra"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
())
&&
((
JSONObject
)
data
.
getJSONArray
(
"verify_results"
).
get
(
0
)).
getStr
(
"result"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
...
@@ -213,7 +213,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -213,7 +213,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
cancel
(
tiktokCouponDto
);
return
cancel
(
tiktokCouponDto
);
}
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音撤销核销失败:{}"
,
data
.
getStr
(
"description"
));
logger
.
error
(
"抖音撤销核销失败:{}"
,
data
.
getStr
(
"description"
));
...
@@ -240,7 +240,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -240,7 +240,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
certificateGet
(
encryptedCode
);
return
certificateGet
(
encryptedCode
);
}
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
logger
.
error
(
"抖音获取核销信息失败:{}"
,
data
.
getStr
(
"description"
));
logger
.
error
(
"抖音获取核销信息失败:{}"
,
data
.
getStr
(
"description"
));
...
@@ -264,7 +264,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -264,7 +264,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
poiQuery
(
tiktokCouponDto
);
return
poiQuery
(
tiktokCouponDto
);
}
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
...
@@ -301,7 +301,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -301,7 +301,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
onlineQuery
(
onlineQueryDto
);
return
onlineQuery
(
onlineQueryDto
);
}
}
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
if
(!
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
SUCCESS
.
getCode
()))
{
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
throw
new
RuntimeException
(
data
.
getStr
(
"description"
));
...
@@ -322,7 +322,7 @@ public class TiktokServiceImpl implements TiktokService {
...
@@ -322,7 +322,7 @@ public class TiktokServiceImpl implements TiktokService {
JSONObject
data
=
entries
.
getJSONObject
(
"data"
);
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
()))
{
if
(
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_INVALID
.
getCode
())
|
data
.
getStr
(
"error_code"
).
equals
(
ErrorCodeEnum
.
ACCESS_TOKEN_EXPIRE
.
getCode
()))
{
clientToken
();
clientToken
();
onlineGet
(
productIds
,
accountId
);
return
onlineGet
(
productIds
,
accountId
);
}
}
return
data
;
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