I'm building a website where users are posting content and URLs, very much alike the facebook wall/news feed.
I was thinking that I could take the URL from the user and open it from the server in the django backend and examine the content (just like facebook does).
I thought that there should be a django-opengraph app which helps me to open a URL and check the meta-tags to determine what kind of content etc. But it seems that Open Graph is an invention of Facebook?
My question is how I can open a URL using django and fetch content (video, audio, images, texts) and by determine what kind of content i can embed it properly into my site? Any apps?
And also, I'm intersted in the security aspect of open URLs from the server sent by a user.
Thanks!
