I'm looking at .Net code which performs a facebook login, using the C#/.Net library wrappers.
I would like to pass an identifier into the log-in attempt, with the goal of having facebook pass it back to me once the user has been authenticated.
I'm constructing the redirect url for the request manually, and I've tried both of the following without much success:
oAuthClient.RedirectUri =
new Uri( "http://localhost:3434/fbOAuth?token=" + HttpUtility.UrlEncode( token ) );
//fails when attempting to get access token -
//"oAuthClient.ExchangeCodeForAccessToken( code )" throws an exception.
var loginUri = oAuthClient.GetLoginUrl( new Dictionary<string, object>
{ { "state", returnUrl }, {"app_data", HttpUtility.UrlEncode(token)} } );
//doesn't pass app_data back to my application
How do you pass arguments to your application as part of the facebook login process?