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.

using facebook c# sdk, I'm able to share link to my wall.

But I have problems when I try to do it on my friend's wall, it show like my friend share link, any ideas why this could be happening?

When I prepare post I'm fill this fields:

from: my facebook client id and name

link: link that I share

post it to address: friends_id/feed

Here is example of code

  JavaScriptSerializer sr = new JavaScriptSerializer();
  Dictionary<string, object> result = new Dictionary<string, object>
                                            {{"link", "{some http address here}"}, 
                                            {"from", sr.Serialize(GetFrom())}};




    FacebookClient fbClient = new FacebookClient(accessToken);

    fbClient.PostCompleted += FbClientPostCompleted;

    fbClient.PostTaskAsync("/{ID of my friend}/feed", parameters);
share|improve this question
1  
Im not sure I understand? COuld you elaborate a little and maybe provide som code of how you tried to handle this? – Magnus Karlsson Dec 19 '12 at 14:25
I add example of code how I do this upper – Max951 Dec 19 '12 at 19:38
Whose access token you using? – Igy Dec 19 '12 at 19:48
I'm use Application Access Token – Max951 Dec 20 '12 at 6:16

1 Answer

You need to use the user's access token, not the application access token. After that it should work correctly assuming you have correct publish permissions.

share|improve this answer
User's access token expire very quick. How I can catch this event and post message guaranteed? – Max951 Jan 10 at 14:18

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.