Facebook Cookies and Token offer numerous features to assist users in managing multiple virtual Facebook accounts. However, using Cookies and Token entails significant risks as others can easily gain unauthorized access to Facebook if they obtain them. In this article, Software Hacks will guide you on how to obtain Facebook Cookies and Token.

I. How to Obtain Facebook Cookies
Note: Facebook Cookies can only be obtained on your personal account; you cannot obtain Cookies from others.
Step 1: Access your personal profile and press F12 to display the developer console. Then, select the Network tab.

Step 2: Locate the “bz” tag under the Name section and choose Headers to view the content inside.
If you cannot find the “bz” tag, simply press F5 to reload the page content and easily locate them at the top.

Step 3: In the Headers section of the “bz” tag, scroll down and find the Cookies item. The entire code snippet after cookie: is your Cookies. Simply store it for later use.

II. How to Get Facebook Token
There are various methods to obtain Facebook Token, you can use Code or Google Chrome extensions.
1. Getting Facebook Token via Code
Step 1: Access your personal profile and press F12 to display the developer console. Then, select the Console tab.

Step 2: Then, Copy and paste the code snippet below into the Console tab and press Enter to run the Code.
(() => {
var GetToken = (callback) => {
var fb_dtsg = document.getElementsByName('fb_dtsg')[0].value;
var http = new XMLHttpRequest;
var data = new FormData();
data.append('fb_dtsg', fb_dtsg);
data.append('app_id','124024574287414');
data.append('redirect_uri', 'fbconnect://success');
data.append('display', 'popup');
data.append('ref', 'Default');
data.append('return_format', 'access_token');
data.append('sso_device', 'ios');
data.append('CONFIRM', '1');
http.open('POST', '/v1.0/dialog/oauth/confirm');
http.send(data);
http.onreadystatechange = function(){
if(http.readyState == 4 && http.status == 200) callback(http.responseText.match(/access_token=(.*?)&/)[1]);
}
}
GetToken(console.log);
})();

Step 3: Immediately, your Facebook Token will appear in the Console window. You can now Copy the Token for various purposes.

2. Getting Facebook Token with Google Chrome Extension
Step 1: Visit the following website to install the extension on Google Chrome.

Step 2: After installing the extension, restart Google Chrome for the extension to take effect. Then, click on the FB Access Token extension icon and select Graph API explorer to retrieve the Token.

Step 3: The system will open the Facebook Developers Tab, where you will find your Token inside the Access Token dialog. You can Copy them for normal usage.

In this article, Software Tips has guided you on the quickest and simplest way to retrieve Facebook Cookies and Token. Have a great day ahead!