本文介绍了如何将标签应用程序添加到具有“新的验证对话框”的页面上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我今天创建了一个应用程序,就像我以前做过的几次。但是,当我想将应用程序添加到某个页面时,我无法找到查看此应用程序个人资料页面的链接,通常用于将该应用添加到我的页面。
任何人知道如何添加应用程序到一个页面,与新的auth对话的东西?我找不到应用程序个人资料页面的链接。
解决方案
您可以通过以下几种方法:
- 使用,如文档中所述:
- 使用JavaScript甚至不离开此页面的页面
FB.ui( {method:'pagetab'});
- 通过重定向到
https://facebook.com/dialog/pagetab?app_id= APP_ID& redirect_url = URL
- 使用JavaScript甚至不离开此页面的页面
- 通过链接
http://facebook.com /add.php?api_key=APP_KEY&pages=1&page=PAGE_ID
- 使用API直接使用
manage_pages
访问令牌 - 中的详细信息。
I created an app today, as i've done several times before. But when i wanted to add the app to a a page i couldn't find the link "view this apps profile page", which I normally use to add the app to my pages.
Anyone know how to add apps to a page, with the new "auth dialog" thing ?? I can't find a link to the apps profile page.
解决方案
You can do it in several ways:
- Using Add Page Tab Dialog as described in documentation:
- With JavaScript not even leaving page where this get called
FB.ui({method: 'pagetab'});
- By redirecting to
https://facebook.com/dialog/pagetab?app_id=APP_ID&redirect_url=URL
- With JavaScript not even leaving page where this get called
- Via link
http://facebook.com/add.php?api_key=APP_KEY&pages=1&page=PAGE_ID
- Using the API directly with a
manage_pages
access token - details in the Page documentation.
这篇关于如何将标签应用程序添加到具有“新的验证对话框”的页面上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!