hello there i am trying to integrate facebook services in C# desktop application, i have also created facebook appId The Code i used for logging in using webBrowser is`
private const string AppId = "xxxxxxxxxxxxxxx";//My AppID
private Uri _loginUrl;
private const string _ExtendedPermissions="User_about_me,publish_stream,offline_access";
FacebookClient fbClient = new FacebookClient();
public void Login()
{
dynamic parameters = new ExpandoObject();
parameters.client_id = AppId;
parameters.redirect_uri = "https://www.facebook.com/connect/login_success.html";
parameters.response_type = "token";
parameters.display = "popup";
if (!string.IsNullOrWhiteSpace(_ExtendedPermissions))
parameters.scope = _ExtendedPermissions;
var fb = new FacebookClient();
_loginUrl = fb.GetLoginUrl(parameters);
webBrowser1.Navigate(_loginUrl.AbsoluteUri);
}`
but it is showing "Can't Load URL: The domain of this URL isn't included in the app's domains. To be able to load this URL, add all domains and subdomains of your app to the App Domains field in your app settings." i think i have to create appId for desktop application but could not find any solution yet, Please help!