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 able to connect to facebook using the C# SDK via my console application but the Facebook Access Key expires every couple of hours and I have to be logged in to my facebook account for it to work at all.

I am using the following code to enumerate photo albums :

var usertoken = FBImageChecker.Properties.Settings.Default.FBUserAccessKey;
var fbclient = new FacebookClient(usertoken);
dynamic albums = fbclient.Get("me/albums");

Am I correct in thinking I should be using oAuth now? if so, does anyone have an example which could work in my case?

Any help would be much appreciated!

share|improve this question
What exactly is your question? Have you tried to use OAuth? There are hundreds of examples of how to use OAuth within a C# application including a SDK that Microsoft wrote to support Facebook among other services. – Ramhound Oct 22 '12 at 19:28

1 Answer

up vote 0 down vote accepted

finally managed to get this working using oauth, unfortunately facebooks documentation is not exactly clear and although there are many examples online as pointed out by @ramhound a lot of them apply to older authentication models so it was a case of trial and error.

share|improve this answer
Can you let us know what approach you followed to make it work? A link to that site which helped you, would be enough. – Ubaid Jan 23 at 13:56

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.