使用 pyfacebook 显示 xfbml 时出现问题
我在我的应用程序上使用 pyfacebook,但在显示 xfbml 时遇到问题 例如,我必须使用 iframe 来显示类似的按钮或类似的框。
奇怪的是: 1)在登录页面上显示正确,我只是在其他页面上遇到问题(登录后)
2)我使用的FB.init部分是
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"></script>
<script type="text/javascript">FB.init("{{ apikey }}", '/static/xd_receiver.html');
而在facebook文档上的参数是:
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
3)当我更改FB.init时到了官方的FB,应用程序不再工作了。 (例如,我无法使用此功能注销,
<a href="#" onclick="javascript:FB.Connect.logoutAndRedirect('/')">Logout</a>
我对 FB 内容相对较新,因此我可能会混淆一些内容,但我只想在我的应用程序上显示正确的 fbml,而不需要对服务器端进行太多修改。
I'm using pyfacebook on my app but I'm having problems displaying xfbml
For example I have to use iframes to display like buttons or like boxes.
What's strange:
1) On the login page the appears correctly, I just have problems on other pages (once logged in)
2) The FB.init part I use is
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"></script>
<script type="text/javascript">FB.init("{{ apikey }}", '/static/xd_receiver.html');
Whereas on the facebook docs the arguments are:
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
3) When I change the FB.init to the official fb one, application doesn't work anymore.
(eg I can't logout using this
<a href="#" onclick="javascript:FB.Connect.logoutAndRedirect('/')">Logout</a>
I'm relatively new to FB stuff, so I'm probably mixing things up, but I just want to display correct fbml on my app without modifying too much the server side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您将 Facebook 的 旧的 javascript API 与他们的 新的 javascript API。
正如新 API 页面上提到的,使用它来执行初始化:
对于注销,您需要如下所示的内容:
I think you are confusing Facebook's old javascript API with their new javascript API.
As mentioned on the new API page, use this to do the init:
For the logout, you would want something like this: