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.

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