Download API
Jump to navigation
Jump to search
This API allows you to download official releases of stand-alone Factorio from the Factorio servers. It's not so much of an API as it is web scraping, but it's documented here for completeness. Please update this page if you utilize it and the information becomes outdated. Also note that's there's a separate, (semi)official API for upgrading between releases, which should be used when possible to lighten load on the Factorio servers. (I'll document that later, promise!)
Authenticating
Downloading Factorio requires an authenticated session with the web server, which is different than the typical authentication mechanism. To log in:
- Create an HTTP session and GET
https://www.factorio.com/login
.
There's a CSRF token you'll need to grab which can be found using one of the following selectors:- CSS1:
input[name=csrf_token]
- XPATH1:
//input[@name="csrf_token"]/@value
.
- CSS1:
- Then send a POST to
https://www.factorio.com/login
with the following parameters:csrf_token
: the CSRF token you grabbed earlier.username_or_email
: your username or email address.password
: your password.