邀请 Twitter 好友访问网站?

发布于 2024-12-12 01:58:54 字数 505 浏览 1 评论 0原文

Twitter 是否有类似于 Facebook 应用程序邀请弹出窗口的功能?

在 facebook 中你可以这样写:

  FB.init({
    appId  : 'xxx',
    status : true,
    cookie : true,
    oauth: true
  });

  FB.ui({
        method: 'apprequests',
        message: 'My Great Request',
        data: '<?php echo $data; ?>'
    }, requestCallback);

它将弹出对话框,你可以在其中选择 twitter 好友,并向他们发送邀请,然后当 API 接受邀请时,你可以找到数据将他们重定向到网站...

这是某种原因吗?可以用推特吗?

Twitter 是否有像 Facebook 一样弹出邀请窗口? 或者可能会向选定的用户发送多条消息弹出窗口?

Does twitter have something similar to facebook application invite pop-up?

In facebook you can write this:

  FB.init({
    appId  : 'xxx',
    status : true,
    cookie : true,
    oauth: true
  });

  FB.ui({
        method: 'apprequests',
        message: 'My Great Request',
        data: '<?php echo $data; ?>'
    }, requestCallback);

And it will pop-up dialog where you can select twitter friends, and send invitations to them, and then when invite is accepted with API you can find data to redirect them to site...

Is this somehow possible with twitter?

Does twitter have invite pop-up like facebook?
or maybe sending multiple messages to selected users pop-up?

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

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

发布评论

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

评论(3

等风来 2024-12-19 01:58:54

Twitter 不提供这样的邀请机制。你有两个选择。

  1. POST statuses/update 创建一条普通推文,供每个人关注用户将会看到。
  2. POST direct_messages/new 向特定关注者发送私人消息。

但要小心,因为过度发布到任何一个都会导致您的用户和您的应用程序被暂停。

Twitter does not provide such an invite mechanism. You have two options.

  1. POST statuses/update to create a general tweet that everyone following the user will see.
  2. POST direct_messages/new to send a private message to a specific follower.

Be carful however, because posting excessively to either will get your users and your application suspended.

半透明的墙 2024-12-19 01:58:54

现在twitter有API,我们可以通过它获取用户的联系人。检查这个-twitter api

Now twitter has the api by which we can get the contacts if a user. check this-twitter api

半步萧音过轻尘 2024-12-19 01:58:54

对于路过的人来说,现在 Twitter 有App Card,它代表 Twitter 上的移动应用程序并推动安装。它允许名称描述图标。这与 Facebook 上的邀请并不完全相同。但是,它会促使用户更轻松地安装应用程序,请查看链接。

https://dev.twitter.com/cards/types/app

Just for someone passing by, right now Twitter has App Card which represent mobile applications on Twitter and to drive installs. It allow name, description and icon. It is not exactly like inviting on Facebook. However, it drive user to install the app easier please checkout the link.

https://dev.twitter.com/cards/types/app

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文