Skip to content

Tags

Refine blacklists

v7.4

API - Check if user has enough credit/wallet balance to subscribe
Will return error_details object if failed.

v7.3

Fixed script not setting correct creation date to file

v7.2

Simple API Guest Auth
Example Script with API usage:

#start.py
import apis.onlyfans.onlyfans as OnlyFans
api = OnlyFans.start()
authed = api.add_auth()
authed.login(guest=True)

model = authed.get_user("onlyfans")

print(model)

v7.1

Dynamic Rules
Script will grab signed_header rules from github so the end user won't have to keep updating the script.

OF's goal is to create download fatigue on the end user so they won't use scripts to archive data.

Right now the script uses inefficient logic to assign the rules. I'll update the script later, but I just wanted to put this out now.

Logic being used right now, is that on every request to a OnlyFans' api the script sends a request to Github to grab the rules, and then proceed with the request.
Multithreaded fix

v7

Formatting
Fixes #912 lol
Added missing return for auth
Forgot we needed that.
Firefox Profile Fix