• Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
AnonyViet - English Version
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
AnonyViet - English Version
No Result
View All Result

How to Delete friends who are no longer active on Facebook by specific year

AnonyViet by AnonyViet
September 25, 2023
in Tips
0

Surely everyone on Facebook has a few hundred to a few thousand friends. But each person can only make a maximum of 5,000 friends. You need to remove friends who no longer play Facebook to make new friends. Friends who should be removed from the Friend List are those who rarely interact with you, or those who are no longer active on Facebook for a long time. Including accounts locked by Facebook, abandoned accounts, clone accounts, accounts that have not posted statuses for a long time… To properly clean up your friends list, you can use the tool Delete inactive friends on Facebook below:

Join the channel Telegram belong to AnonyViet ???? Link ????

How to Delete friends who are no longer active on Facebook by specific year

This is a PHP script that allows you to delete friends who have not posted Status since any year. For example, you need to delete people who have not posted on their status since 2017. This script will scan through your friends’ status list, and Unfriend with people No posts since 2017 now.

Prepare necessary tools

  • To use PHP Script, you need 1 Free Hosting. Refer to the Quality Free Hosting can still register.
  • Or you can use it Xampp to create a PHP environment on Windows. Using Xampp will not have your account Checkpointed because it is the same IP as the IP where you log into Facebook.

Afterward Upload Script Unfriend inactive and change according to the parameters below:

  • $min_y = ‘2017’; ==> The year when friends did not post new statuses
  • $access_token ==> Fill in your Token Full rights here [Cách lấy Token Full quyền]

So which of your friends has been since the year 2017 Up to now, if you have not posted any new statuses, you will be unfriended. You change 2017 into another year as desired.

How to use Code to delete inactive friends

Download Code or Copy the Code Delete friends who are no longer active on Facebook below enter Notepad and name it unfriend.php

<?php
set_time_limit(0);
$min_y = '2019';
$access_token = "Điền Token vào đây";

function friendlist($token){
	$a = json_decode(file_get_contents('https://graph.facebook.com/me/friends?access_token='.$token), true);
	return $a['data'];
}
function last_active($id, $tok){
	$a = json_decode(file_get_contents('https://graph.facebook.com/'.$id.'/feed?access_token='.$tok.'&limit=1'), true);
	$date = $a['data'][0]['created_time'];
	$aa = strtotime($date);
	return date('Y', $aa);
}

function unfriend($id, $token){
	$url="https://graph.facebook.com/me/friends?uid=".$id.'&access_token='.$token;
	$ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE");
    $result = curl_exec($ch);
    curl_close($ch);
	return $result;
}

$FL = friendlist($access_token);
foreach($FL as $list){
	$name = $list['name'];
	$id = $list['id'];
	$date = last_active($id, $access_token);
	if($date < $min_y){
		echo " ".$name.' => '.$date.' => '.unfriend($id, $access_token);
		echo "\r\n<br>";
	}else{
		echo " ".$name.' => '.$date;
		echo "\r\n<br>";
	}
}

Finally, run the file unfriend.php follow the Domain path.

For example: http://anonyviet.000webhost.com/unfriend.php

You wait a few seconds for the script to scan your friend list, maybe about 30 seconds. It will then print the results listed below.

For deleted friends text will appear true front and number first at the end.

How to Delete friends that no longer work

You can combine Script to delete inactive friends to purge friends who don’t interact with you. This way you will have a list of closer and closer friends. Unfriend inactive accounts, virtual accounts…

The article scored: 5/5 – (100 votes)

Previous Post

How to create folders in bulk and name them according to Excel lists

Next Post

Linux vs. Windows and macOS: Which OS should I use?

AnonyViet

AnonyViet

Related Posts

5+ prompts to create sparkling Christmas photos for mothers and babies at home
Tips

5+ prompts to create sparkling Christmas photos for mothers and babies at home

December 17, 2025
How to Clean Up Your Computer to Speed ​​Up Windows Faster
Tips

How to Clean Up Your Computer to Speed ​​Up Windows Faster

December 16, 2025
Share Snowfall Code for Website to celebrate Christmas
Tips

Share Snowfall Code for Website to celebrate Christmas

December 16, 2025
How to build web applications in just minutes with Youware
Tips

How to build web applications in just minutes with Youware

December 15, 2025
5 Free Adobe Illustrator Alternatives on Linux
Tips

5 Free Adobe Illustrator Alternatives on Linux

December 15, 2025
Review of Chongluadao utility – HieuPC’s new anti-fraud utility
Tips

Review of Chongluadao utility – HieuPC’s new anti-fraud utility

December 14, 2025
Next Post
Linux vs. Windows and macOS: Which OS should I use?

Linux vs. Windows and macOS: Which OS should I use?

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Recent News

5+ prompts to create sparkling Christmas photos for mothers and babies at home

5+ prompts to create sparkling Christmas photos for mothers and babies at home

December 17, 2025
How to Clean Up Your Computer to Speed ​​Up Windows Faster

How to Clean Up Your Computer to Speed ​​Up Windows Faster

December 16, 2025
Share Snowfall Code for Website to celebrate Christmas

Share Snowfall Code for Website to celebrate Christmas

December 16, 2025
How to build web applications in just minutes with Youware

How to build web applications in just minutes with Youware

December 15, 2025
5+ prompts to create sparkling Christmas photos for mothers and babies at home

5+ prompts to create sparkling Christmas photos for mothers and babies at home

December 17, 2025
How to Clean Up Your Computer to Speed ​​Up Windows Faster

How to Clean Up Your Computer to Speed ​​Up Windows Faster

December 16, 2025
Share Snowfall Code for Website to celebrate Christmas

Share Snowfall Code for Website to celebrate Christmas

December 16, 2025
AnonyViet - English Version

AnonyViet

AnonyViet is a website share knowledge that you have never learned in school!

We are ready to welcome your comments, as well as your articles sent to AnonyViet.

Follow Us

Contact:

Email: anonyviet.com[@]gmail.com

Main Website: https://anonyviet.com

Recent News

5+ prompts to create sparkling Christmas photos for mothers and babies at home

5+ prompts to create sparkling Christmas photos for mothers and babies at home

December 17, 2025
How to Clean Up Your Computer to Speed ​​Up Windows Faster

How to Clean Up Your Computer to Speed ​​Up Windows Faster

December 16, 2025
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

trang chủ f168 nhà cái 78win https://www.qq8827.com/ https://go99.ae.org/ https://nohu90.bid/

No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

trang chủ f168 nhà cái 78win https://www.qq8827.com/ https://go99.ae.org/ https://nohu90.bid/

wpDiscuz
0
0
Would love your thoughts, please comment.x
()
x
| Reply