Yes, there is a way to do this, but this method works only for the web-based Facebook and Messenger; you can’t do something similar for the mobile apps.
Basically, Facebook uses timed requests on the server side to check if the client is still available. So the front end (loaded Facebook web page) will periodically send an HTTP request (XHR) with the idle time to their servers.
Here’s an example of such request:
https://1-edge-chat.facebook.com/pull?channel=p_<UserID>&seq=0&partition=-2&clientid=18ae8ecc&cb=ie3k&idle=117&qp=y&cap=8&msgs_recv=0&uid=userid&viewer_uid=userid&msgr_region=FRC&state=offline
Note: I’ve replaced my user ID which normally would be a number.
If you read the URL above, you’ll see the part saying &idle=117. This denotes the total number of seconds the account has been idle for. The state=offline stands for whether the chat is turned on or off.
So, to disable this, just add the following rule in your ad blocker’s custom list of filters:
*-edge-chat.facebook.com^
To enable on both, Facebook and Messenger, you can add the following two lines:
||*-edge-chat.facebook.com^ ||*-edge-chat.messenger.com^
Or the single line, using regex:
/^https?\:\/\/\d*-edge-chat.(facebook|messenger)\.com\/?/$xmlhttprequest
A few drawbacks of this method are that you’ll not be able to receive messages in real time and you’ll not appear online even if the chat is on. You’ll have to refresh the page to receive new messages.
In order to avoid both of these drawbacks, here’s one workaround. You can add this line instead:
^https?\:\/\/\d*-edge-chat.facebook\.com\/pull\?(.*)?state=offline/$xmlhttprequest
Or, add this for both, Facebook and Messenger:
/^https?\:\/\/\d*-edge-chat.(facebook|messenger)\.com\/pull\?(.*)?state=offline/$xmlhttprequest
The end result of this will be the following:
- When your chat is off, you’ll not appear online, your last activity won’t be reported, and you won’t be able to receive messages in real time.
- When your chat is on, you will appear online, your last activity will be reported, and you’ll be able to receive messages in real time.
Unfortunately, there seems to be no other solution since Facebook’s front end can fetch messages only when the client periodically reports that they’re active, hence the fetching is done once the last activity is reported. Both of these actions are made possible by a single back-end script (*-edge-chat.facebook.com/pull), through the same request; therefore, you can’t have one without the other.
2 réflexions sur “How To Disable Last Active Time on facebook by blocking XHR request”