Looking for it for some hours, I found a solution that works, but I think that might be not the easiest way.
Solution:
Download the url of the page to a temporary file on the device.
Read the temporary file and try to find some regular expressions that describes the thumb of that page.
Download the thumb with the link found before and delete the temporary file.
The patterns that I've look for are:
<meta property="og:image" content="http://link_for_the_thumb" />
<meta content="http://link_for_the_thumb" itemprop="image">
<link rel="image_src" href="http://link_for_the_thumb">
I think there is a better way much easier to do that, but that was the way that I found. Waiting for ideas.
Thank you