1

我试图让以下内容在 iPad 上工作。在所有桌面浏览器中都可以正常工作,但在带有API Error Code 3, Unknown method. This method isn't supported by this display type.

FB.ui({
  method:'send',
  to:anyUserId,
  link: anyLink,
  name: anyName,
  display: 'popup',
  show_error: true
});

我已向Facebook 问题跟踪器报告了一个错误。仍然因为我在现有的错误或谷歌中找不到任何东西,我怀疑这可能是我的错误。如果您有任何线索,很高兴得到您的帮助。

4

1 回答 1

3

根据我对 android 的经验,移动世界似乎不支持发送对话框(fb 称之为触摸屏)。

您应该能够使用文档中显示的 url 在某种 web 视图中打开对话框:

http://www.facebook.com/dialog/send?app_id=APP_ID&
  name=LINK_NAME&
  link=LINK_URL&
  redirect_uri=YOUR_REDIRECT_URL
于 2012-05-31T21:36:52.903 回答