预定的推文和 Facebook 分享
我使用 Ruby on Rails 创建一个应用程序。我想知道用户是否可以设置在 Twitter 和 Facebook 上分享帖子的日期和时间。
我知道通常在 twitter 和 facebook 上分享任何帖子的方式,用户将单击分享按钮并输入他/她的 facebook/twitter 登录凭据,然后帖子就会发布在他们的墙上。我只是想通过调度程序自动执行此过程。
希望我的问题很清楚。如果我需要以更好的方式解释,请告诉我。
谢谢。
I create an application using Ruby on Rails. I wonder if there is any way for the users to set the date and time when the post should be shared in twitter and facebook.
I am aware of the way to normally share any post in twitter and facebook where the user will click on the share button and enter his/her login credentials for facebook/twitter and then the post gets posted in their wall. I just want to automate this process through a scheduler.
Hope my question is clear. Please let me know If I have to explain in a better way.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您研究类似 Resque 的内容,您可以指定稍后触发的任务。希望这有帮助。
If you look into something like Resque, you can specify for the tasks to fire at a later date. Hope this helps.
如果您希望应用程序在 Twitter 上发布某些内容,则应该使用 Twitter 按钮之外的其他内容。
在这里查看 Twitter 身份验证
http://railscasts.com/episodes ?utf8=%E2%9C%93&search=twitter
然后看看这里如何使推文操作延迟
http://railscasts.com/episodes?utf8=%E2%9C %93&搜索=延迟+作业
If you want your application to post something on twitter, you should use other things than the twitter button.
take a look at twitter authentication here
http://railscasts.com/episodes?utf8=%E2%9C%93&search=twitter
and later look here how to make the tweet action be delayed
http://railscasts.com/episodes?utf8=%E2%9C%93&search=delayed+job