0

我已成功在 FB Open Graph 上发布了一个带有对象的操作。对象包括图片、标题(是一个链接)和描述。当我单击标题链接时,它会从我的 Web 服务器转到包含所有元标记数据的页面。

我的问题是如何自定义此链接以打开我的 facebook 应用程序而不是打开对象网页。

我看过很多开放的图表内容。当我单击对象标题时,它会要求我安装应用程序。我只想做同样的事情。

刚开始做facebook整合。这可能是一个太简单的问题,但如果你能提供帮助,我真的很感激。

4

1 回答 1

0

Go to your Facebook App Dashboard:

https://developers.facebook.com/apps//summary

If your app is iOS, fill out the Native iOS App settings:

  • Bundle ID: Your bundle ID
  • Facebook Login: Enabled
  • Deep Linking: Enabled

For more details, see: https://developers.facebook.com/docs/howtos/link-to-your-native-app-ios-sdk/

If your app is Android, fill out the Native Android App settings:

  • Package Name: Your launching activity's package
  • Class Name: Your launching activity's class (full class name)
  • Facebook Login: Enabled
  • Deep Linking: Enabled

For more details, see: https://developers.facebook.com/docs/howtos/androidsdk/3.0/link-to-your-native-app/

于 2012-11-07T18:32:12.210 回答