Skip to main content

How to download bulk photos from Facebook?

There is an application which allows you to download bulk photos from Facebook.
It is quite simple and easy to use. You can save albums/photos from your Facebook page. You can save your photos from Facebook.
All the downloaded albums and photos will be shown in gallery nicely so that you can view photo offline. This photo gallery is part of the application.

You can try "Facebook Photo Downloader".
Download here
https://play.google.com/store/apps/details?id=com.nsoeaung.photoexplorer


Comments

Popular posts from this blog

Privacy policy of WoW Photo Gallery

NAING SOE AUNG built the WoW Photo Gallery app as a Freemium app. This SERVICE is provided by NAING SOE AUNG at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at WoW Photo Gallery unless otherwise defined in this Privacy Policy. Information Collection and Use For ...

Privacy policy of Photo Hidden Data

  NAING SOE AUNG built the Photo Hidden Data app as a Freemium app. This SERVICE is provided by NAING SOE AUNG at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Photo Hidden Data unless otherwise defined in this Privacy Policy. Information Collection and Use ...

Fixing WCF HTTPS Endpoint 404 Errors

Windows Communication Foundation (WCF) may be considered an old technology, but many legacy .NET projects still rely on it. If you are working with WCF services hosted in IIS, you may encounter an issue when exposing services over HTTPS . When the service is exposed over HTTPS, the <service name> defined in your web.config must exactly match the fully qualified type name of the service implementation class defined in the .svc file. If they do not match, WCF cannot resolve the endpoint, resulting in a 404 error . Example of Incorrect Configuration <service name="ServiceA"> ... </service> Correct Configuration <service name="ProjectA.Setup.Service.ServiceA"> ... </service> This small detail often gets overlooked, but ensuring the names match is essential for WCF to properly locate and expose the ...