我可以将页面选项卡应用程序添加到不同的应用程序配置文件页面吗?

发布于 2024-12-10 08:41:33 字数 130 浏览 2 评论 0原文

我想知道是否可以将我创建的页面选项卡应用程序添加到不同的应用程序配置文件页面,就像我可以将其添加到 Facebook 上的常规页面一样。当我单击配置文件应用程序页面下的链接“添加到我的页面”时,我看不到所有应用程序配置文件页面(仅列出常规页面)。

I wanted to know if I can add a page tab app I created to a different App profile page like I can add it to regular pages on Facebook. I can't see all my app profile pages(only regular pages are listed) when I click under a profile app page the link "Add to My Page".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜是你 2024-12-17 08:41:33

是的,您可以通过访问链接来做到这一点:

http://www.facebook.com/add.php?pages=1&api_key=APP_ID

这将为您提供您拥有的所有页面(包括应用程序页面)的列表,或者您可以直接指定应使用哪个页面来添加应用程序:

http://facebook.com/add.php?pages=1&api_key=APP_ID&page=PAGE_ID

Yes you can do that by visiting a link:

http://www.facebook.com/add.php?pages=1&api_key=APP_ID

This will bring you list of all pages (including application pages) you own, or you can specify directly which page should be used to add application to:

http://facebook.com/add.php?pages=1&api_key=APP_ID&page=PAGE_ID
旧城空念 2024-12-17 08:41:33

如果您想使用 Graph SDK 来执行此操作(以后台、静默模式 - 避免用户交互),那么您需要进行这样的调用

您需要首先获得管理页面权限,然后

if (accessToken) {
   var data = {
       "access_token": accessToken,
       "app_id":applicationId
   }
   FB.api("/" + pageId + "/tabs", 'post', data, function(response) {
       //success or failure, check it out
   });
} 

它将在您的应用程序配置文件作为选项卡:)

希望它会有所帮助。

If you want to do it using Graph SDK (in kind of background, silent mode - avoiding the user interaction), then you need to make a call like this

You need to get the manage_pages permission first, and then

if (accessToken) {
   var data = {
       "access_token": accessToken,
       "app_id":applicationId
   }
   FB.api("/" + pageId + "/tabs", 'post', data, function(response) {
       //success or failure, check it out
   });
} 

It will install the application on your application profile as a tab :)

Hope it will help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文