我如何才能宣布JSON发表评论



我正在尝试使用 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, widthheightrich类型所需的。

但是,从Reddit样本中,我们看到Reddit不提供widthheight值。

您可能需要获取Reddit来修复其损坏的揭示实现,或者您可能想使用更多宽容的库。

相关内容

  • 没有找到相关文章

最新更新