作者 陈俊学

5.1.8

1.增加动态列表操作id
@@ -5,5 +5,5 @@ SERVER: @@ -5,5 +5,5 @@ SERVER:
5 control: http://fbchat.xyz:39002/api/terminal 5 control: http://fbchat.xyz:39002/api/terminal
6 mark: ntkj 6 mark: ntkj
7 VERSION: 7 VERSION:
8 - code: 517  
9 - name: 5.1.7  
  8 + code: 518
  9 + name: 5.1.8
@@ -3210,6 +3210,11 @@ class FacebookClient(Client): @@ -3210,6 +3210,11 @@ class FacebookClient(Client):
3210 id = edge['node']['feedback']['id'] 3210 id = edge['node']['feedback']['id']
3211 except: 3211 except:
3212 id = None 3212 id = None
  3213 + # 帖子操作票证
  3214 + try:
  3215 + token = edge['node']['trackingdata']['id']
  3216 + except:
  3217 + token = None
3213 # 帖子发布时间 3218 # 帖子发布时间
3214 try: 3219 try:
3215 time = \ 3220 time = \
@@ -3243,6 +3248,7 @@ class FacebookClient(Client): @@ -3243,6 +3248,7 @@ class FacebookClient(Client):
3243 is_react = None 3248 is_react = None
3244 node['text'] = text 3249 node['text'] = text
3245 node['id'] = id 3250 node['id'] = id
  3251 + node['token'] = token
3246 node['time'] = time 3252 node['time'] = time
3247 node['url'] = url 3253 node['url'] = url
3248 node['is_comment'] = is_comment 3254 node['is_comment'] = is_comment