I am using the Facebook C# SDK installed using NuGet to allow user's to login to my site using Facebook. In all the C# SDK documentation that I've found, the access token was obtained using the JavaScript SDK. I want to do the entire authentication flow server side without using JavaScript SDK.
Where can I find good documentation or sample code for the steps I need to follow for complete server side authentication using the Facebook C# SDK?
Is there any advantage of combining C# SDK and JavaScript SDK, or is it fine to stick to server side flow only?