FB.ui 在 Azure 托管应用程序上共享弹出窗口:此 URL 的域未包含在应用程序的域中

FB.ui Share popup on Azure Hosted Application: The domain of this URL isn't included in the app's domains

我有一个正在开发的应用程序,它使用 Facebook Developers FB.ui 共享弹出窗口:

        FB.ui({
            display: 'popup',
            method: 'share',
            href: imgUrl,
            quote: imgComment,
        }, function (response) { });

当我在 localhost:5001 上开发时,这似乎工作得很好(我在我的 FB 开发应用程序设置中设置了以下内容):

但是,一旦我将我的应用程序发布到我的 Azure 托管站点(在我上面标记的其他地址上),我在尝试加载 FB.ui 共享弹出窗口时收到以下错误:

有效 OAuth 重定向 URI 中的 URL 与我在 Azure 上在线应用程序的位置完全匹配:

所以无法弄清楚为什么我在尝试加载共享弹出窗口时看到此错误。

The URL in the Valid OAuth Redirects URIs matches exactly the location of my Application online on Azure

错误消息不是关于那个字段,而是关于 App Domains 字段。

您会在“设置”->“基本”下找到它。