
[DEPRECATED] A Express.js-based webservice to get public Facebook events by location
The Facebook events by location service is an Express.js-based webservice that allows users to retrieve public Facebook events based on location, distance, and search terms. Due to changes in the way Facebook grants access to event data, the service has limitations but can still be a valuable resource for location-based app development.
mkdir fb-event-testcd fb-event-test && npm init --yesnpm install facebook-events-by-locationnode node_modules/facebook-events-by-location/index.jsgit clone https://github.com/tobilg/facebook-events-by-location.gitcd facebook-events-by-locationnpm i && npm startdocker build -t <yourTag> .tobilg/facebook-event-search from Docker Hub.docker run -d --name fb-event-search -p 3000:3000 tobilg/facebook-event-searchThe Facebook events by location service offers a solution for accessing public Facebook events based on location and search terms. Despite limitations due to changes in Facebook's API access, the service can be installed as an NPM package, cloned from Git, or deployed as a Docker microservice. By following the installation guides provided, users can access event data and incorporate it into their own applications effectively.

Express.js is a simple Node.js framework for single, multi-page, and hybrid web applications.