Skip to content

workergnome/fakebook_api

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
app
 
 
bin
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Fakebook API

This is a system designed to allow server-side access to Facebook using Capybara and PhantomJS. It's still deeply experimental; it may or may not work at any point.

Also, it's a terrible idea. It involves giving your Facebook password to random software to be transmitted over the internet and to be stored in plain text on the computer.

This should make you nervous.

Please notice that Facebook's Terms of Service forbid doing anything like this — there's a very good chance using this will result in Facebook banning your account. Use a fake account. Note that Facebook's Terms of Service forbid fake accounts.

Use at your own risk.

Installation:

This requires Redis, beanstalkd, and PhantomJS to be installed on your system.

git clone https://github.com/workergnome/fakebook_api.git
cd fakebook_api
bundle install

Note that currently, the software assumes that you have a self-signed SSL certificate located at ~/.ssl/localhost.ssl.

See the Wiki Installation for more detailed instructions.

Usage Instructions:

For development purposes, the system is currently designed to use Foreman to handle starting everything up.

foreman start

Will initialize the application.

Additionally, for debugging, the background job runner is commented out of the Procfile. You can either comment it back in or you can, in a second terminal:

bundle exec ruby lib/background_task.rb

If you need additional debug information, you can either export DEBUG=1 or create a .env file in the root directory. This will set PhantomJS into verbose mode.

Once the application is running, go to https://localhost:3000/. You'll see a form that will allow you do test the service.

Additionally, you can post data to the following endpoints:

You will need to provide the following form fields:

email:        "your@emailaddress.com"
password:     "yourFacebookPassword"
message:      "An optional message for posting on the wall of your friend"
id:           "your_friends_fb_id"
friend_name:  "Friend's Name"  # Only needed for /join_event, but will create better debug messages if it exists

Once you submit a request, you will receive a ticket in the form of a UUID: something like 5aab4905-0fe9-4352-a0e6-0d93d7d0f760

You can check on the status of the request by going to https://localhost:3000/pretty_status/5aab4905-0fe9-4352-a0e6-0d93d7d0f760 (or https://localhost:3000/status/5aab4905-0fe9-4352-a0e6-0d93d7d0f760 for JSON)

It usually takes about 30 seconds for a request to be completed, and they will queue up in order. Theoretically, you can run multiple workers to handle multiple requests in order—that hasn't been tested yet.

A log file will be created in the /logs directory with the UUID as a filename. This will show the status of the request. If it fails for any reason, it will create a screenshot of the webpage in the /screenshots directory of the page at the point where it failed.

A Brief Digression.

Facebook has some of the worst CSS I've ever had the opportunity to scrape. It's obviously highly generated, inconsistent, it uses multiple identical IDs, and it's generally obnoxious.

It's almost like they don't want anyone to scrape and automate their site.


This is under active development—things will change, things will break, etc. I'd say that you shouldn't use this in production, but there are basically no places where this would be useful in production, and if you can think of one, stop thinking about that.

About

An API for manipulating social media accounts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published