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 am using the SDK to post to FB wall, what happen is if I post a text like:

Hello "world"!

In the FB wall I get the following:

Hello \"world\"!

Why is happening? What should I do to avoid that?

Below is a sample of the code I use, where of course the query string parameters returned by Request.Get may contain anything, if there's a string with " or a carriage return, etc... After the code is executed I can see on my FB wall the post with the encoded chars.

FacebookClient fbc = new FacebookClient( _accesstoken_ );

dynamic ievent = new ExpandoObject();
ievent.name = Request.Get("name");
ievent.description = Request.Get("description");
ievent.location = Request.Get("location");
ievent.privacy_type = Request.Get("privacy");

dynamic result = fbc.Post("me/events", ievent);
share|improve this question

1 Answer

up vote 0 down vote accepted

I found out was a bug in the C# FB SDK.

After downloading the latest release everything worked fine.

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.