我正在创建一个应用程序,它允许人们在我们的网站上发布内容并同时出现在他们的 Facebook 时间线中。根据我对 OpenGraph API 的理解,我需要创建一个公开可用的页面,其中包含 Facebook 可以访问的元数据,以便发布操作起作用。例如:
<head>
<meta property="fb:app_id" content="" />
<meta property="og:type" content="" />
<meta property="og:title" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:description" content="" />
</head>
我担心的是,如果 Facebook 可以使用此页面,那么未登录我们网站的人也将能够看到此内容。这是一个常见的安全问题吗?建议使用哪些最佳做法来保护用户的内容免受未经授权的用户的攻击?