I am writing a console application which runs every midnight and pulls all the insights of my Facebook page.I am using Facebook C# SDK to connect with Facebook. My problem is in order to get data from Facebook i need to have access token but to do this i have to be authenticated. Since it is a console application and automated process of execution i can't give any prompt to insert Facebook credentials is there any method to make authentication method automatic or is there any other method to get access token?
I am following below steps to get access token
HTTP request to https://graph.facebook.com/oauth/authorize?client_id=My_AppId&scope=Manage_page&redirect_uri=http://www.facebook.com/connect/login_success.html which should return authorization code. But this returns me user denied error since i have not authenticated.
Then i use the above authorization code to get access token
var fbClient = new FacebookClient(); dynamic accessToken = fbClient.Get("oauth/access_token", new { client_id = appId, client_secret = appSecret, redirect_uri = "http://www.facebook.com/connect/login_success.html", code = code });