To date, there is no easy way to find out facebook message count. However, there are a few methods you can use. However, there are a few methods you can use to get an estimate. Let’s dig in deeper to find out more.
Table of Contents
Finding out the total facebook message count:
Facebook itself does not necessarily provide any definite methods to count messages. Still, there are several messages which allow you to find the total facebook message count.
- Using third-party apps
- By downloading your Facebook data
Using third-party apps:
If you’re looking for a third-party app to help you count Facebook messages, there are a few things to keep in mind:
- Make sure that the app is compatible with your operating system.
- Check the reviews to see what other users say about the app.
- Make sure that the app is free of viruses and malware.
With that out of the way, a couple of popular apps allow you to find the total facebook message count.
After downloading any of the following apps, you can connect your Facebook account with the apps and load your chats, showing you the number of messages in your preferred chat.
By downloading Facebook data:
Third-party apps are not always reliable, and you may encounter bugs and issues while trying to read the messages. Another better alternative is first to download your Facebook data. Make a program to count the messages yourself or use already available, open-source programs on the internet.
Before using the tools mentioned above, it is important to find out how to download Facebook data itself.
Downloading Facebook data:
Downloading Facebook data can be divided into two parts. Requesting and downloading.
Requesting Facebook Data:
- Open Facebook on your browser.
- Tap on your profile picture in the top right corner.
- From the popped-up options, choose “Settings & Privacy” and then choose Settings.
- In the newly opened window, choose “Your Facebook Information” present on the sidebar on the right side of the screen.
- In the main window, click on the “View” button present in the section named “Download your Information.”
You will see several options in the newly opened window. On the very top, configure options in “Select File Options” as:
- Format: JSON
- Media Quality: LOW (We are only downloading messages, so it doesn’t matter)
- Date Range: (Your preference)
- In the “Select Information to Download” section, uncheck everything except Messages.
- After you are done configuring the options, click on “Start Your Download” at the very bottom of the screen.
- Facebook will notify you when your download is ready.
Downloading Facebook Data:
- Open Facebook on your browser.
- Tap on your profile picture in the top right corner.
- From the popped-up options, choose “Settings & Privacy” and then choose Settings.
- In the newly opened window, choose “Your Facebook Information” present on the sidebar on the right side of the screen.
- In the main window, click on the “View” button present in the section named “Download your Information.”
- On the top, there are two tabs, “Request a download” and “Available files” choose “Available files.”
- You can download your data from there after entering your password.
Using Downloaded Facebook Data,find the total Facebook message count:
Now that you have downloaded the necessary Facebook data, you can use the following tools for the number of messages.
Message Counter:
To use the message counter, you must have python installed on your PC. Consider using the official website to download the latest version of python and install it.
After you have installed python, follow the steps below to install the message counter:
Installing message counter:
- Open any terminal application, like “Command Prompt.”
- If you are unsure how to do that, open your windows search bar and search for the command prompt.
- Right-click on the result name “Command Prompt” and click “Run as Administrator.”
- Inside the command prompt, type the following command:
- pip install messenger-counter
- The command will install Message Counter after a short amount of time.
Using Message Counter:
The commands mentioned are some examples that allow you to count messages.
python -m mc [-h] command [options]
For counting the number of messages with a member named John Doe:
Python -m mc user "facebook-YourName.zip" "John Doe"
Available commands:
- Count [-c] file — Counts all messages/characters and saves to messages.json or messages_chars.json file.
- stats [-c] [converstion] — Displays statistics for counted messages. You can specify conversation for detailed statistics and use -c for character statistics.
- user name — Detailed statistics for a specific person
- Yearly file [conversation] — Number of messages per year. (please specify the path to the .zip file for counting messages) You can specify conversations for more precise statistics.
- Daily [-d DIFF] file [conversation] — Number of messages daily. (used or –difference flag to time shift by some number of hours and show statistics differently)
- Hours [-d DIFF] file [conversation] — Average number of messages by hour throughout the day. (additional options as above)
You can also create a python script if CLI is not your cup of tea.
import MessengerCounter as mc mc.set_source('facebook-YourName.zip') # insert path for your .zip file mc.count() mc.count(chars=True) data = mc.get_data() mc.statistics(*data)
For more information, refer to the documentation.
You may also be interested in:
- What Happens If You Block Someone After Viewing Their Story?
- How To Do Side-By-Side Photos on iPhone
- Metro Pin Number – All You Need To Know
Conclusion:
Although there is no such feature provided by Facebook that allows users to find out how many messages they have exchanged with another person, still, we can use other workarounds to count the number of messages.
These methods include using third-party native apps that connect to your Facebook account or other scripts that count the number of messages by using the Facebook data downloaded from your account.