次のコードを使用して、Facebook でストーリーを公開しています。
FacebookWebClient facebookWebClient = new FacebookWebClient(UserSession.CurrentFacebookProfileAccessToken);
string URL="https://graph.facebook.com/me/tsstesting:start";
var parameters = new Dictionary<string, object>();
parameters["og:type"] = "tsstesting:myurl";
parameters["urlname"] = "http://on.fb.me/12rMxhV";
parameters["title"] = "QBSTab";
try
{
dynamic result = facebookWebClient.Post(URL, parameters); // again here should be your app name instead of "myapp"
JObject friendListJson = JObject.Parse(result.ToString());
string returval = friendListJson["id"].ToString();
return returval;
}
catch (Exception e)
{
return e.Message;
}
プロパティ 'og:locale:alternate' の指定された値 'www' をタイプ 'enum として解析できなかったため、タイプ 'website' のURL ' https://www.facebook.com/ ' の例外 オブジェクトが無効です。 '。
ここで何が欠けていますか?