帖子上显示验证码,验证码验证后帖子失败
由于某种未知的原因,我们使用以下代码在每个提要帖子上获取验证码:
feed
发布到流很容易,因为所有字段都是可选的。只需指定 你需要什么,剩下的就不用管了。
<script>
var publish = {
method: 'feed',
message: '',
name: 'test name',
caption: 'test caption',
description: 'test description',
link: 'http://fb.mylist.com/ws/uipr?uiid=fdec6c79-d0b6-7091-c3db-b5ec6386b46c&lid=b6cb3994-fa91-4548-b1f7-f3d945e29de4',
picture: 'http://mylist3.vo.msecnd.net/26381278/original/8e7a33d0-06f4-3503-b07d-31c16bb4ab0a.img'
};
FB.ui(publish, Log.info.bind('feed callback'));
</script>
我们不知道为什么会收到验证码。此外,当用户满足验证码时,发布不会成功。知道为什么我们收到了验证码,但验证码后帖子不起作用吗?
For some unknown reason we are getting a captcha on every feed post using the following code:
feed
Publishing to the stream is easy, as all the fields are optional. Just specify
what you need, and leave the rest out.
<script>
var publish = {
method: 'feed',
message: '',
name: 'test name',
caption: 'test caption',
description: 'test description',
link: 'http://fb.mylist.com/ws/uipr?uiid=fdec6c79-d0b6-7091-c3db-b5ec6386b46c&lid=b6cb3994-fa91-4548-b1f7-f3d945e29de4',
picture: 'http://mylist3.vo.msecnd.net/26381278/original/8e7a33d0-06f4-3503-b07d-31c16bb4ab0a.img'
};
FB.ui(publish, Log.info.bind('feed callback'));
</script>
We have no idea why we are getting the captcha. In addition, when the user satisfies the captcha the post is not successful. Any idea why we are getting the captcha and the post is not working after the captcha?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这已记录在 Facebook 开发者网站的错误部分中。请在那里报告,以便我们帮助引起他们的注意。 http://developers.facebook.com/bugs/347441388626378
This has been documented in the Bugs section of the Facebook Developers site. Please report it there so we can help bring it to their attention. http://developers.facebook.com/bugs/347441388626378
如果 Facebook 总是显示验证码,它就会怀疑(无论正确还是错误)您正在发送垃圾邮件。有时,作为额外的反垃圾邮件措施,即使您正确输入验证码,它也不会处理您的请求。我在发送消息对话框中经历过这种情况。想想为什么 Facebook 认为您在发送垃圾邮件,并相应地调整您的应用程序或应用程序的使用。
If facebook always shows a captcha it suspects (either correctly or incorrectly) that you are spamming. Sometimes, as an extra anti-spam measure, it will not process your request even if you enter the captcha correctly. I have experienced this with the send message dialog. Think about why Facebook thinks you are spamming and adjust your app or use of the app accordingly.