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 having a couple issues when posting to a users wall in a webform app.

1.) If I post just a message using parms like below: the receiving users gets a notification icon in their top bar in facebook and they get an email about someone posting on their wall.

dicFBPostParams.Add("message", Server.UrlDecode(strMessage));

However, when I add additional params (like link) and post, the receiver does NOT receive a notification icon or an email. BUT...if I manually post that same link on their wall, from within Facebook, it does send an email and show a notification popup. So it seems like maybe it is an SDK thing, or the way facebook is handling the graph post vs the manual post?

2.) Again when posting a link, I was under the presumption that you didn't have to set the 'picture' parameter if the OG:image tag is set on the destination url. However, when you view the link post on the user's wall that was sent from the SDK, the image is not being displayed. Yet open graph actions which point to the same object page do show the image correctly, so I know the OG:image tag is correct. Page is here if anyone wants to check.

You can see in the image 2 wall posts...the top is via an open graph API post, the second (lower) one is using the below params and a post to the usersID/feed. They both point to the same destination URL. enter image description here

Dictionary<string, object> dicFBPostParams = new Dictionary<string, object>();
            dicFBPostParams.Add("message", Server.UrlDecode(strMessage));
            dicFBPostParams.Add("link", strFBPostURL);
            dicFBPostParams.Add("name", Server.UrlDecode(strPostTitle));
            dicFBPostParams.Add("caption", Server.UrlDecode(strCaption));
            //dicFBPostParams.Add("description", "Description goes here"); //gets it from og tags on destination URL
            //dicFBPostParams.Add("picture", "Description goes here"); //gets it from og tags on destination URL...BUT NOT WORKING!!!
            dicFBPostParams.Add("source", "WhatWatchNow.com");

Thanks in advance for any thoughts anyone may have. Chad

share|improve this question
I even tried explicitly adding the picture parameter, to no avail: dicFBPostParams.Add("picture", "cf2.imgobject.com/t/p/w342/…);. The picture does not show up on the wall post :( – Chad Richardson Aug 21 '12 at 20:02

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.