Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem that I need to send a message to some of my friends on facebook and it is wasting time to send message individually to each one

also I want to be able to send a post that including Image and text to some facebook groups for marketing purpose to my facebook page

So I think that I can find a program that can help me do that or even some code example that can do that, or may be I will need to make my own program, but I never deal with facebook platform before

so please if any one can help I will be thankful

Thanks in Advance

share|improve this question
Possible duplicate of stackoverflow.com/questions/184880/… – 5arx Aug 31 '12 at 8:07

1 Answer

This is straightforward with Windows PowerShell and http://facebookpsmodule.codeplex.com. For example

Get-Friends | Show-FBMessageDialog -Link http://www.example.com

displays a dialog to send a message to all your friends (or you can add a filter to the command). I have used this to send a message to over a thousand people. This is not completely automated (Facebook API restriction), it will show one dialog for each 50 recipients.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.