facebook-csharp-sdk / facebook-winclient-sdk

Facebook SDK for Windows & Windows Phone
http://facebooksdk.net
Apache License 2.0
61 stars 139 forks source link

OnFacebookAppRequestFinished and OnFacebookFeedFinished never called #84

Open Whyser opened 9 years ago

Whyser commented 9 years ago

As the title says, the events: OnFacebookAppRequestFinished and OnFacebookFeedFinished are never called when the following are invoked (I've tried on a laptop running Windows 8.1 and a Phone with Windows 8.1):

Session.ShowAppRequestsDialog(new WebDialogFinishedDelegate((result) =>
{
   if (result == WebDialogResult.WebDialogResultDialogCompleted){ // This is called
   }
   else{
    }
   }), message, title, appIdList);
}

And Session.ShowFeedDialog(toId, link, linkName, linkCaption, linkDescription, picture);

For desktop I'm using the Facebook.Client.dll located in: _..\Facebook.Client.1.0.3\lib\win81 and for phone: **..\Facebook.Client.1.0.3\lib\wpa81_ and for both the Facebook.dll located in: ..\Facebook.7.0.6\lib\portable-win81+wpa81**.

Can anyone else confirm this?

Whyser commented 9 years ago

If someone could just confirm that it's not me doing something weird, I could actually take some time to see if I can find the issue, fix it and create a pull request. But I don't feel like "wasting" time looking for something that isn't broken.