invite all friend on fanpage

N.Paul

Newbie
Joined
Mar 15, 2013
Messages
37
Reaction score
1
Hi guys !

Recent i created two profile with more that 5k friend and I want to invite all my friend to like my fanpage. I used code or plugin to select all and I gave Send. But the problem is another: When I push button to send, automatic facebook send on define friends..let's say 50, not more. What can I do to send all, because it's very frustated to repeat operation more that 10 time or more...50 friend per send signify 100 operation on an account with 5k friends..

So, do you have this problem? And what is the solution ?
 
Use a javascript code to select all of the checkboxes.

All you have to do is scroll all the way down until all of your friends are showing in the box before you do it.
 
Going to add this to our software. If you want to help us implement it send me a ping on skype - friend.bomber
 
Hi guys !

Recent i created two profile with more that 5k friend and I want to invite all my friend to like my fanpage. I used code or plugin to select all and I gave Send. But the problem is another: When I push button to send, automatic facebook send on define friends..let's say 50, not more. What can I do to send all, because it's very frustated to repeat operation more that 10 time or more...50 friend per send signify 100 operation on an account with 5k friends..

So, do you have this problem? And what is the solution ?

I don't think there is any solution to this problem.

All invitations have to go through Facebook. If Facebook limits the number of invitations that you can send, I don't think there is any way to overcome that limit.

At best, you can write a script/software to keep sending invitations again and again till all friends have been invited.

Anyway, I found these invitations don't have much utility as hardly anyone reads them.
 
Last edited:
I macros or there are some Firefox and Google chrome plugins do this. (Do a Google search for extensions)
 
Facebook did that long back ago and there is no way you can send more then 50 invites per attempt ... All you have to do is automate the process or do it manually with the help of select all plug in .
 
just add by ur self, will take around 1hour.
1 hour is very very much..Now i Used a plugin to select automatically the friend and i push only the button ?Send?. But, with profile with 5k friend, it's very hard...
 
1 hour is very very much..Now i Used a plugin to select automatically the friend and i push only the button "Send". But, with profile with 5k friend, it's very hard...

Never got a ticket with exactly what you wanted to do. We are willing to implement this feature for you into our bot. :)
 
Step 1: Open your Facebook Account.

Step 2: Open any event or Fan Page on Facebook, from where you want to Invite your Friends. (I have my Blog Fan
Page so I have opened my Blog Fan Page on Facebook)

Step 3: Click on "Invite" as I mentioned in below picture. After Click on Invite an Popup will open and ask you to invite friends, here you will have to click on every friend in normal process but we are not doing this.

Step 4: Now press Ctrl+Shift+J (For Google Chrome) and Ctrl+Shift+K (For FireFox).
--Also, for Chrome: Press F12 -> Console -> Add the Javascript code there, and press Enter.--

Step 5: A window will open from bottom side of the browser, Paste the following code in it and hit "Enter".

javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms.type="checkbox" )elms.click()};
Cheers
 
Last edited:
That it's for selected all invite friends, but now facebook introduced limited invite on 50 friend max.
Step 1: Open your Facebook Account.

Step 2: Open any event or Fan Page on Facebook, from where you want to Invite your Friends. (I have my Blog Fan
Page so I have opened my Blog Fan Page on Facebook)

Step 3: Click on "Invite" as I mentioned in below picture. After Click on Invite an Popup will open and ask you to invite friends, here you will have to click on every friend in normal process but we are not doing this.

Step 4: Now press Ctrl+Shift+J (For Google Chrome) and Ctrl+Shift+K (For FireFox).
--Also, for Chrome: Press F12 -> Console -> Add the Javascript code there, and press Enter.--

Step 5: A window will open from bottom side of the browser, Paste the following code in it and hit "Enter".

javascript:elms=document.getElementsByName("checkableitems[]");for (i=0;i<elms.length;i++){if (elms.type="checkbox" )elms.click()};
Cheers
 
Back
Top