Skip to content

Instantly share code, notes, and snippets.

@datawhores
Last active June 12, 2024 20:26
Show Gist options
  • Save datawhores/8e8be131fb1b190b50c5324ab2ca5f89 to your computer and use it in GitHub Desktop.
Save datawhores/8e8be131fb1b190b50c5324ab2ca5f89 to your computer and use it in GitHub Desktop.

Fix for auth issues

Option 1

Step 1

update to new commit

51c48a2

or

3.10.1 or newer

Step 2

change dynamic-mode-default to growik

"dynamic-mode-default": "growik"

Option 2

Step 1

update at or past 3.90.dev12

Step 2

https://of-scraper.gitbook.io/of-scraper/getting-started/config-options/advanced-config-options/changing-const#where-are-they

the value to change is

{"SNEAKY": "https://raw.githubusercontent.com/Growik/onlyfans-dynamic-rules/main/rules.json"}

Step 3

change "dynamic-mode-default" to "sneaky"

Option 3

This is only required for releases before 3.9.0dev12 before sneaky was added as an option

You'll have to change the value for the deviint url

Step 1

set the right url

Step 1a

by changing the const value

This only works on version 3.7.1 or greater

{"DEVIINT: "https://raw.githubusercontent.com/Growik/onlyfans-dynamic-rules/main/rules.json"}

Step 1b

or replace

https://raw.githubusercontent.com/deviint/onlyfans-dynamic-rules/main/dynamicRules.json

with

https://raw.githubusercontent.com/Growik/onlyfans-dynamic-rules/main/rules.json

by searching the code and replacing the string

Step 2

The goal is to replace

fmt = f"{content['start']}:{{}}:{{:x}}:{content['end']}"

with

fmt = f"{content['prefix']}:{{}}:{{:x}}:{content['suffix']}"

You can try searching for part of the phrase above or

deviint
get_request_auth_deviint

Step 3

change "dynamic-mode-default" to "deviint"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment