How to connect from mobile

Published: 6 months ago
Last edit: 1 month 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.

  1. Go to the release page
  2. Download the .xpĂ® file of the latest version

Enable firefox debug menu

  1. Go to settings > about firefox
  2. Tap 10 times on the firefox logo
  3. You'll get a notification about the debug menu being enabled.

Install the downloaded extension

  1. Go to settings > Install extension from file
  2. Select the downloaded extension onlyfans_cookie_helper...
  3. Allow required permissions and confirm add
  4. Ensure the installation has been done by going to the extension manager. It should be listed.

Retrieve X-BC and sess

  1. Navigate to onlyfans.com and login, if you already were logged in - refresh the page
  2. Go to extensions > OnlyFans Cookie Helper
  3. A popup will appear with a JSON object.
  4. From this object you can copy the x-bc and sess value to onlyscraper.fans/app

And thats it!