diff --git a/conf/config.yaml b/conf/config.yaml index 9a7f5af..191341a 100644 --- a/conf/config.yaml +++ b/conf/config.yaml @@ -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 diff --git a/lib/facebook.py b/lib/facebook.py index 08e03b8..69bc9ea 100644 --- a/lib/facebook.py +++ b/lib/facebook.py @@ -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