Drupal 6 站点 + Facebook 新的 Graph API 介绍?

发布于 2024-10-01 06:44:38 字数 235 浏览 4 评论 0原文

我想将我的 Drupal 网站之一与 Facebook API 集成。我的问题之一是:

  • 用户登录我的 Drupal 站点后,
  • 我的站点如何判断用户是否:
    1. 是否喜欢我的 Drupal 页面之一
    2. 并根据d/尚未d
    3. 将用户重定向到不同的页面

谢谢!

I'd like to integrate one of my Drupal site with Facebook API. One of my questions is:

  • after a user login my Drupal site
  • how can my site tell whether the user:
    1. has Liked one of my Drupal pages or not
    2. and redirect the user to a different page based on Liked/Not yet Liked

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2024-10-08 06:44:39

您可以使用“Facebook Connect”模块来简化与 Facebook 的连接。之后你可以使用图形API:

$fb = facebook_client();
$response = $fb->api('/me/likes');
print_r($response);

You can use "Facebook Connect" module for easing connection to facebook. After this you can use graph api:

$fb = facebook_client();
$response = $fb->api('/me/likes');
print_r($response);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文