我正在尝试使用 python-oembed
库从reddit(https://github.com/reddit/reddit/reddit/wiki/oembed获取评论):
import oembed
consumer = oembed.OEmbedConsumer()
endpoint = oembed.OEmbedEndpoint('https://www.reddit.com/oembed',['https://www.reddit.com/r/*'])
consumer.addEndpoint(endpoint)
response = consumer.embed('https://www.reddit.com/r/Showerthoughts/comments/2safxv/we_should_start_keeping_giraffes_a_secret_from/cno7zic')
获取oembed.OEmbedError: Missing required fields on OEmbed rich response.
错误。
如何重新删除此数据?
reddit返回的OEMBED无效。
来自http://oembed.com/,§2.3.4.4, width
和 height
是rich
类型所需的。
但是,从Reddit样本中,我们看到Reddit不提供width
和height
值。
您可能需要获取Reddit来修复其损坏的揭示实现,或者您可能想使用更多宽容的库。