我们现在(在Facebook开发页面上)在我们的网站上有“喜欢页面”代码,但是我注意到javascript sdk正在减慢我们网站的页面速度(另一个外部请求!)。
我想知道是否有可能仅将链接附加到按钮上,而不是包含javascript sdk。在我们当前的“顶页面”按钮上,当我单击它时,会在弹出窗口的网址中得到它:
var distinguishedName = $"OU={Encoder.LdapDistinguishedNameEncode(ouName)},DC=sample,DC=net";
try
{
// Create a context for the OU
var context = new PrincipalContext(ContextType.Domain, _targetedUrl, distinguishedName, ContextOptions.Negotiate | ContextOptions.Signing | ContextOptions.Sealing);
}
catch (Exception e)
{
_logger.Error(e, "Organization {0} with definition {1} could not be found, exception occurred {2}", ouName, distinguishedName, e);
}
当我将该URL粘贴到浏览器中时,它请求登录,然后提供正确的Facebook页面,从而可以选择“顶”该页面。尽管很脏,但确实可以工作。
曾经在各处搜索用于完成此操作的指南,说明或教程,但一无所获。
有人对如何更好地实现这样的链接有任何建议吗?删除其中的一些内容是问题吗?如果必须使用这样的链接,我至少希望使其尽可能通用和简短。