Facebook 网站应用程序
帮助我。。 我正在本地服务器中实现一个 Web 应用程序,之后我将发布我的应用程序以供下载并可以使用每个应用程序。因此,我需要使用我的 Web 应用程序为用户提供社交体验(用户可以更新他的粉丝页面) 通过我的网络应用程序)。所以我创建了一个 Facebook 应用程序。但我仍然对应用程序中的网站网址有疑问。这不是我自己的网站。这适用于所有下载用户。那么我如何创建一个 facebook 应用程序来实现这一目标。
Help me..
I'm implementing a web application in my local server and after i will publish my application to download and can use every one.So I need to give a social experience to user with my web application(user can update his fan pages through my web application). So i created a facebook application. But I'm still in problem what is site url in application. This is not for my own web site. This is for all download users. Then how can I create a facebook application to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 facebook Canvas 应用程序,站点 url 是托管实际应用程序的位置。
因此,如果您的 Web 应用程序在 http://example.com/facebook 上功能齐全,那么该网站就是该网站网址。
我去年创建了一个 Facebook 应用程序,它是一个基于 Web 的应用程序,完全包含在我的网络服务器中,网站 URL 指向它的登陆页面。
With a facebook Canvas App, site url is where the actual application is hosted.
So, if your web application was fully functional at http://example.com/facebook, that would be the site URL.
I created a facebook app last year and it's a web based application that is wholly contained within my webserver, the site url points to it's landing page.
我认为你想让这个应用程序像 WordPress 框架一样可下载,以便其他人可以在他们的服务器上托管该应用程序并使用它。
因此,最好的方法可能是像 WordPress 一样拥有一个管理部分,在他或她的服务器上下载并实现您的应用程序的用户可以提供自己的应用程序访问令牌。
将您自己的访问代码硬编码到您的下载应用程序框架
中 在管理部分创建一个选项卡以向 facebook 注册您的应用程序,这会将用户重定向到他/她可以访问的
facebook.com/developer
注册他们的应用程序,注册后他们可以将其访问令牌放回您的应用程序框架管理部分。您可以将此详细信息存储在某个表中,并在需要身份验证的任何地方获取它。希望这个逻辑对你有帮助。
I think you want to make this application downloadable like wordpress framework so that others can host the application on their server and use it.
So probably best way is to have a admin section like in wordpress, user who download and implement you application on his or her server can provide their own application access token.
Insted of hard-coding your own access code into your download application framework
In admin section create a tab to register your application with facebook, which will redirect user to the
facebook.com/developer
where he/she can register their application and after registration they can put their access token back in you application framework admin section. you can store this details in some table and fetch it where ever you need it for authentication.hope this logic helps for you.