Facebook's OAuth implementation allows you to authenticate as an application (rather than as a user). Is it possible to achieve this with the Facebook C# SDK?
Rich
|
Facebook's OAuth implementation allows you to authenticate as an application (rather than as a user). Is it possible to achieve this with the Facebook C# SDK? Rich |
|||
|
|
|
Looks like the Facebook C# SDK doesn't help you with obtaining an access token as a user or an application. Based on this comment on the Facebook C# SDK:
Your pretty much on your own. |
|||
|
|
As per @jfar's answer, it doesn't look as though the SDK natively supports application authentication. My solution has been to source the access token myself and then apply it to SDK. Below is my rather crude Console application for retrieving the access token.
As you can see I have initiated OAuth authentication using Rich |
|||
|
|