我想通过嵌入阅读我的页面内容。我尝试了类似调用这个 URL 的方法
https://api.embed.ly/1/extract?url=http%3A%2F%2Fmysite.com%2Fmy_page.html&key=2222222
我的页面很简单,就像这样
<!DOCTYPE html>
<html>
<head>
<title>My Title</title>
</head>
<body>
<div>Text 1</div>
<p>Text 2P</p>
<body>
</html>
但内容结果属性始终为空。我可以获得标题,但不能获得内容。我期待在内容领域得到这个
<div>Text 1</div>
<p>Text 2P</p>
,但它是空的。
另一方面,如果我尝试以同样的方式从 blogspot.com 获取我的博客内容,它工作正常。
我该如何解决?也许我的页面格式不正确,在这种情况下,我的页面应该是什么格式?