Hello,
here I've put together all services and tools i know that are being necessary to autojoin facebook groups and to post to them.
1.) Use this tool to extract group-ids:
[GET] Facebook Automation
->Rightclick on your Account -> Group Tools -> Searching, Checking Infos, Leaving Group
->Search
->Mark all
->Rightclick -> Export -> Export all IDs
2.) export the ids to a textfile and change them to the format
http://www.facebook.com/groups/<groupid>
3.) use this macro to join the groups
First you need to install Firefox and Imacros.
Go to C:\Users\xxx\Documents\iMacros\Datasources and create a txt file called groups.txt and put your groups url one for line.
Run it in a loop with a count equal to the number of lines in your textfile.
You might need to change "Join<SP>group" to the text of the facebook button in your language.
VERSION BUILD=8920312 RECORDER=FX
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*180+ 60); randomNumber;")
SET !VAR2 EVAL("var randomNumber=Math.floor(Math.random()*1534+ 1); randomNumber;")
SET !ERRORIGNORE YES
SET !DATASOURCE groups.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO = {{!COL1}}
TAG POS=2 TYPE=A ATTR=TXT:Join<SP>Group
WAIT SECONDS={{!VAR1}}
4.) use this macro to actually post your postings:
The text-file has to be renamed to groups_post.txt this time.
Also note that you have to change the urls form
http://www.facebook.com to m.facebook.com
Replace YOURTEXTHERE with your marketing text. use \n for linebreaks.
SET !ERRORIGNORE YES
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*180+ 60); randomNumber;")
SET !DATASOURCE groups_post.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO = {{!COL1}}
TAG POS=1 TYPE=TEXTAREA ATTR=ID:u_0_0 CONTENT="YOURTEXTHERE"
TAG POS=1 TYPE=INPUT:SUBMIT ATTR=NAME:view_post
WAIT SECONDS={{!VAR1}}
make sure not to post more than 50 posts a day per account, or you will land in facebook jail for a few hours.
Regards,
TheBoss