You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
FBSession.ShowSendDialogAsync used to work, recently i noticed it stopped working.
The popup dialog now shows a facebook page showing the error: "Sorry, this content isn't available right now".
Code:
FBSession fbSession = FBSession.ActiveSession;
fbSession.FBAppId = "...";
fbSession.WinAppId = "...";
FBPermissions permissions = new FBPermissions(new List<String> { "email" });
if ((await fbSession.LoginAsync(permissions)).Succeeded)
{
PropertySet parameters = new PropertySet
{
{ "link", MicrosoftStoreUrl }
};
FBResult result = await fbSession.ShowSendDialogAsync(parameters);
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
FBSession.ShowSendDialogAsync used to work, recently i noticed it stopped working.
The popup dialog now shows a facebook page showing the error: "Sorry, this content isn't available right now".
Code:
The text was updated successfully, but these errors were encountered: