http://www.downvids.net/video/
I am trying to build an iOS app and having trouble trying to find the public links of facebook videos.
So in general i wanted to do what this website above is doing, show popular or new videos that are shared on facebook.
Can anybody guide me in right direction please?
Afaik you cannot search for videos, see the Search API documentation: https://developers.facebook.com/docs/reference/api/search/
Yeah might be there are many ways to find latest videos on facebook. There are many facebook pages which are made for videos and on that pages video are post on daily bases. You get latest video from that pages and download it. But downloading video from Facebook is also a problem. Most of the Facebook video downloader are difficult to use. But i found a downloader which is very easy to use you also use it click here. There are also some search tools which are use to find videos from facebook but i think it is one of the easy way.
Related
Some websites have a small logo or something at the bottom of their web page indicating that for example, that website is powered by MediaWiki.
How to find out what Wiki software does a website use in case of the owner removing the "Powered by ..." logo?
To check for mediawiki sites, I check for the Special:Version page. For example, https://codex.wordpress.org/Special:Version.
Find out, which technologies a particular website is using with w3techs.com
I want to develop a website in which users can have video chat and they can connect to other user anonymously without had been added by the other person as friend. I also want that all the active users list is displayed on the website. So somebody please suggest me how can I implement it on django?
You can use a third party service for this. Or you can use WebRTC. There are some nodejs packages which can help you do this. I like "EasyRTC" for that.
Or if you want to use Python, you can use Twisted. Here's a tutorial (found on Google, not tested by myself - https://ferretfarmer.net/2013/09/05/tutorial-real-time-chat-with-django-twisted-and-websockets-part-1/)
In essence, Django doesn't handle the video streaming/chat part. You can use Django for authentication and serving the required html and other stuff. But the video chat needs to depend on other services.
If you are looking to create a video calling and chat application using django, django_channels, you can refer to this Github Repository .
It also tells you how to deploy your app to google app engine flex with Redis instance.
It took me a long time to build this, so I created a detailed basic public repository to help someone like myself and for future reference.
Im learning C++ to program a micro-controller, it turns out that there aren't any libraries available yet for posting to facebook / twitter.
i have coding background in PHP and was able to implement posting to facebook timeline through the use of API with just a simple HTML with Textarea and a button.
was kinda wondering if its possible for C++ to post or push data into a website HTML and, with that website, i will be able to post status in my facebook / twitter.
i scanned through the available libraries of my micro-controller, and found out about HTTPClient but not sure if this is the solution im looking for.
I want to make an extension for Chrome that customers have to enter their username and password. Then after that they can view their account information by the extension instead of log in to website.
But firstly I'm beginner in developing Chrome extension then after I read some articles about it, now I don't know Where I can start?
Secondly my big problem is using web service in my extension because I have to get customer user/pass and send them to my web service (.net) to get information.
I appreciate you if you give me your ideas/sample code/tutorial/...
But firstly I'm beginner in developing Chrome extension then after I read some articles about it, now I don't know Where I can start?
Start from hello worlds, of course. I would recommend refreshing your knowledge of HTML/CSS and Javascript, as Chrome extensions are essentially local web pages.
But before you dive into new technology, think if you really need to do this as a Chrome extension. Maybe a simple set of webpages will be a better (and cross-browser) choice? Do you really need chrome.* API? Maybe you can share some additional details, like why did you decide to go with Chrome extension in the first place.
I'm building a website using django and planning to connect it with facebook. I googled and found so many codes to do the job but don't know which one is good for me. I need facebook connect and new graph api support. Could anyone share me some experiences with codes below and advise me which one is good for me? (with some tips if possbible)
github.com/benbinary/django-facebookconnect
github.com/dickeytk/django_facebook_oauth
github.com/digvan/django_facebook_oauth
github.com/facebook/python-sdk
github.com/flashingpumpkin/django-socialregistration
github.com/ryanmark/django-facebookconnect
github.com/tschellenbach/Django-facebook
I would really appreciate it.
http://github.com/facebook/python-sdk is official Facebook Graph SDK from Facebook. So it's good for fetching/puting data from Facebook. It's doing it well, so you don't have to search for alternative.
Authentication is bit more problem. I was searching for library witch will match my needs, but not found it. So I wrote bit off code myself.
see also:
http://developers.facebook.com/docs/authentication/
http://developers.facebook.com/docs/api
http://developers.facebook.com/docs/reference/javascript/