Added fullContent to Feedly API
This commit is contained in:
parent
01e12dd872
commit
e2593c8b36
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,8 @@ def parse(obj, raw, stream):
|
|||
# Collect text in nested JSON content
|
||||
if 'content' in obj.raw:
|
||||
obj.content = obj.raw['content']
|
||||
elif 'fullContent' in obj.raw:
|
||||
obj.content = obj.raw['fullContent']
|
||||
else:
|
||||
if 'summary' in obj.raw:
|
||||
if 'content' in obj.raw['summary']:
|
||||
|
|
Loading…
Add table
Reference in a new issue