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'm trying to append to facebook message form . something that the user has already written in my app. with a click on send via facebook message , the message form should contain the title and the subject.

here is what i'm trying to do. i make it to work with Emails but to facebook i found it kind though

            kosh = "\n Subject Name: "+msg['title']+"\n Submission Date: "+msg['date']+'\n Submission Time If Any : '+msg['time']+'\n Description: '+msg['desc']+"\n\n Hi I Created this Assignment Reminder using Unitar Staff Directory\n download it now!! From Android Market & BlackBerry App World\n";
                    var subject = msg['title'];
                     var mailto_link = 'https://www.facebook.com/dialog/send?';
                     mailto_link += '&subject=' + encodeURIComponent(subject);
                     mailto_link += '&body=' + encodeURIComponent(kosh);
                     window.location.href =mailto_link;
                     },

anyone could help me how to figure it out.. thanks in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.