How to connect from mobile
Published: 7 months ago
Last edit: 3 months ago
Category: Tutorials
It might be overwhelming to get the necessary data to connect on mobile BUT with a few steps it's possible.
Fansly
This one is fairly simple. You only need the Authorization header. The header value is also not dependent on browser or device.
The easiest way is to get the authorization header one time on PC and put it on your phone.
Putting it on your phone can be as simple as
- using an app that syncs data to all your devices
An example here is Google Keep. Your notes synchronize to all your devices, you just have to go to https://keep.google.com on PC to paste it and on mobile to copy it
- taking a picture of it
- typing it over
Onlyfans
For onlyfans we need 2 values to connect: xbc and session cookie. Getting these values is a way more trickier as Onlyfans is way more strict.
The x-bc and session cookie is different per device and browser/user agent.
Eg you can't use the same session cookie as on PC. Onlyfans matches the cookie value with your user-agent and on phone these won't match. You'll get logged out everywhere if you try this.
So let's find out on how we get these values
Install firefox
From this step forward, I'm gonna use Firefox Android
Firefox is a browser which supports extensions and we're gonna manually install an extension.
Download extension
We're gonna use a custom made extension that shows the session and x-bc values for us. As no mobile browser has developer tools like on desktop to check traffic and such, this will be our alternative.
The extension is located on github.
- Go to the release page
- Download the
.xpĂ®
file of the latest version
Enable firefox debug menu
- Go to settings > about firefox
- Tap 10 times on the firefox logo
- You'll get a notification about the debug menu being enabled.
Install the downloaded extension
- Go to settings > Install extension from file
- Select the downloaded extension
onlyfans_cookie_helper...
- Allow required permissions and confirm add
- Ensure the installation has been done by going to the extension manager. It should be listed.
Retrieve X-BC and sess
- Navigate to onlyfans.com and login, if you already were logged in - refresh the page
- Go to extensions > OnlyFans Cookie Helper
- A popup will appear with a JSON object.
- From this object you can copy the x-bc and sess value to onlyscraper.fans/app
And thats it!