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 get exception when i try to post to facebook.I am using facebook sdk at codeplex and excption string is

A member with the name 'Padding' already exists on 'System.Windows.Forms.TabControl'. Use the JsonPropertyAttribute to specify another name.

code is

 FacebookApp app = new FacebookApp(myToken.Default.appId);
            dynamic parameters = new ExpandoObject();
            parameters.message = textBoxMassPostMessage.Text;

            if (post == PostType.Link)
            {
                parameters.link = textBoxMassPostLink.Text;
                parameters.picture = postLinkPictureUrl[thumbnailMassPostPicture];
                parameters.name = textBoxArticleTitle.Text;
                parameters.caption = textBoxCaption.Text;
                parameters.description = textBoxDescription;
                //parameters.actions = new
                //{
                //    name = "View on Zombo",
                //    link = "http://www.zombo.com",
                //};
            }
            dynamic result = app.Post(id + "/feed", parameters);

what is the wrong?

share|improve this question

1 Answer

up vote 1 down vote accepted

Change parameters.description = textBoxDescription to textBoxDescription.Text.

share|improve this answer
o man what a silly mistake i have made – Afnan Bashir Feb 6 '11 at 13:18
why compiler is not giving any error – Afnan Bashir Feb 6 '11 at 13:18
2  
@Afnan: Because of dynamic. You're throwing away most compile-time sanity checks by using it. – Matti Virkkunen Feb 6 '11 at 13:24

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.