I am in the middle of creating an app, in that if user put a website url it will automatically convert to the website thumbnail. I made a http connection and got the html page as response. In that there is a meta tag that have the image/thumbnail.
<meta property="og:image" itemprop="image primaryImageOfPage" content="https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon@2.png?v=73d79a89bded" />
So my question is how to extract that image.
I tried Jsoup , I cant extract the image from that.
Geeks please help me