I want to read my page content via embedly. I tried something like just call this URL
https://api.embed.ly/1/extract?url=http%3A%2F%2Fmysite.com%2Fmy_page.html&key=2222222
and my page is very simple just like this
<!DOCTYPE html>
<html>
<head>
<title>My Title</title>
</head>
<body>
<div>Text 1</div>
<p>Text 2P</p>
<body>
</html>
but content result attribute is always empty. I can get title, but not a content. I was expecting to get this in the content field
<div>Text 1</div>
<p>Text 2P</p>
, but it is empty.
From other side, if I try to get my blog's content from blogspot.com in the same way, it works fine.
How can I fix it? Maybe my page is not formatted properly, in this case what should be proper format of my page?