如何将照片发布到Facebook页面feed - 不是由他人发布

问题描述:

我已经安装了facebook sdk

I have installed facebook sdk

现在我可以使用下面的代码发布到墙上了

Now i am able to post to wall like this with below code

发布代码以上消息

        FacebookClient myClient = new FacebookClient(srAcceToken);
        var dicParams = new Dictionary<string, object>();
        dicParams["message"] = "trial message";
        dicParams["caption"] = string.Empty;
        dicParams["description"] = string.Empty;
        dicParams["name"] = "deneme 123";
        dicParams["req_perms"] = "publish_stream";
        dicParams["scope"] = "publish_stream";
        dicParams["access_token"] = srAcceToken;
        var publishResponse = myClient.Post("/" + srPageId + "/feed", dicParams);

现在,当我想发布图像时,会出现问题。当我发布使用下面的代码我得到这个图像

Now the problem occurs when i want to post image. When i post with using below code i am getting this image

获取上述结果的代码

            var mediaObject = new FacebookMediaObject
        {
            ContentType = "image/jpeg",
            FileName = "pokemon.jpg"
        }.SetValue(File.ReadAllBytes(Imagepath));

        FacebookClient myClient = new FacebookClient(srAcceToken);
        var dicParams = new Dictionary<string, object>();
        dicParams["message"] = "trial message";
        dicParams["caption"] = string.Empty;
        dicParams["description"] = string.Empty;
        dicParams["name"] = "deneme 123";
        dicParams["req_perms"] = "publish_stream";
        dicParams["scope"] = "publish_stream";
        dicParams["source"] = mediaObject;
        dicParams["type"] = "normal";
        dicParams["access_token"] = srAcceToken;
        var publishResponse = myClient.Post("/" + srPageId + "/photos", dicParams)

但是我想发布如下图像 - 我该怎么办?

But i want to post image as below - how can i do it ?

c#4.5 - 使用最新的facebook sdk谢谢

c# 4.5 - using latest facebook sdk thank you

希望这个简短的代码会帮助你



hope this short code will help you

Dictionary<string,string> fbParams = new Dictionary<string,string>();
            fbParams["message"] = Title;
            fbParams["caption"] = string.Empty;
            fbParams["description"] = string.Empty;
            fbParams["req_perms"] = "publish_stream";
            fbParams["scope"] = "publish_stream";
            //Initialize Your Facebook Client in the manner that suits you, I did it by supplying a saved access token from a single users
            FacebookWebClient fbClient = new FacebookWebClient(<YOUR_ACCOUNT_ACCESS_TOKEN>);
            //Get the listing of accounts associated with the user
            dynamic fbAccounts = fbClient.Get("/me/accounts");

            //Loop over the accounts looking for the ID that matches your destination ID (Fan Page ID)
            foreach (dynamic account in fbAccounts.data) {
                if (account.id == <DESTINATION_ID_OF_YOUR_FAN_PAGE>) {
                    //When you find it, grab the associated access token and put it in the Dictionary to pass in the FB Post, then break out.
                    fbParams["access_token"] = account.access_token;
                    break;
                }
            }
            //Then pass your destination ID and target along with FB Post info. You're Done.
            dynamic publishedResponse = fbClient.Post("/" + <DESTINATION_ID_OF_YOUR_FAN_PAGE> + "/feed", fbParams);

=================== ==============

===================================

fbParams [access_token] = account.access_token;

fbParams["access_token"] = account.access_token;

此行将让您访问此页面上的写入

this line will get you access to write on this page