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 creating a third-party (C# console) application to post status on my (current user) Facebook wall. I've done the same for an application (where I was using the same console application to post on application's wall).

I'm using the [Facebook C# SDK][1] API and getting exception at faceookClient.Post("/me/feed",arguments) function:

An active access token must be used to query information about the current user.`

Do I need to get user access token for accomplishing it?

share|improve this question

1 Answer

Yes. You will need to get a valid access token and pass it when you post

share|improve this answer
user access token or app access token ? if user access token than how can i get it, currently i m generating access token using facebookoauth class ? is it the same u talking about ? – Hemant Bhatt Sep 12 '11 at 16:53
Sorry but you need to read the manual. – Tom Squires Sep 13 '11 at 8:15
i ve read the manual n m done trying everything, cause m working on console application so cant use web browser to redirect my user for authentication, n there is nothing in documentation to get user access token-page access token using console application(without redirection) in case i ve missed some reading, do tell me, i l really appreciate. thanks in advance – Hemant Bhatt Sep 13 '11 at 13:02

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.