Facebook offline access key
-
Hi, I am a beginner to create Facebook application. Will appreciate if someone can explain how to get and use offline access session key? regards, rnv
Have you checked out the Facebook developers community[^]? :)
"If you can't explain it simply, you don't understand it well enough" ~ Albert Einstein "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." ~ Paul Neal "Red" Adair
-
Hi, I am a beginner to create Facebook application. Will appreciate if someone can explain how to get and use offline access session key? regards, rnv
Hi. I've recently had to do this as well. I used the following:
browserFacebook.Navigate(@"http://www.facebook.com/login.php?api\_key=" + FacebookAPIKey + @"&connect_display=popup&v=1.0&
next=http://www.facebook.com/connect/login\_success.html&cancel\_url=http://www.facebook.com/connect/login\_failure.html&
fbconnect=true&return_session=true&session_key_only=true&req_perms=read_stream,publish_stream,offline_access");You can intercept this URL once its done loading (
string s = browserFacebook.Url.ToString()
) which will show you the session key thats been returned :)