作者 陈俊学

5.1.8

1.增加动态列表操作id
... ... @@ -5,5 +5,5 @@ SERVER:
control: http://fbchat.xyz:39002/api/terminal
mark: ntkj
VERSION:
code: 517
name: 5.1.7
\ No newline at end of file
code: 518
name: 5.1.8
\ No newline at end of file
... ...
... ... @@ -3210,6 +3210,11 @@ class FacebookClient(Client):
id = edge['node']['feedback']['id']
except:
id = None
# 帖子操作票证
try:
token = edge['node']['trackingdata']['id']
except:
token = None
# 帖子发布时间
try:
time = \
... ... @@ -3243,6 +3248,7 @@ class FacebookClient(Client):
is_react = None
node['text'] = text
node['id'] = id
node['token'] = token
node['time'] = time
node['url'] = url
node['is_comment'] = is_comment
... ...