直接发布到 Twitter 和 YouTube
我正在考虑向我的网站添加一项功能,允许我在我的网站上撰写帖子或添加视频,并通过单击按钮将其发布到我的 Twitter 和/或 YouTube 帐户。有谁知道是否有办法做到这一点?我不是在寻找代码,只是寻找一些有关如何完成此操作的文档的链接。
谢谢。
I am thinking of adding a feature to my website that allows me to write a post or add a video on my site and also post it to my twitter and/or youtube accounts with the click of a button. Does anyone know if there is a way to do this? I am not looking for code, just some links to documentation on how this is done.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有。你必须连接 Twitter 和 YouTube,并使用他们的 API(应用程序编程接口)来完成。您在他们的开发者网站上注册并获得一个秘密 API 密钥(一种允许您使用 API 的密码)。然后,您只需调用它们的函数即可。
Yes, there is. You have to connect with twitter and youtube, and you do it by using their API (Aplication Programming Interface). You register in their developers site and get a secret API key (kind of a password to allow you to use the API). Then, you just call their functions.
Twitter API:https://dev.twitter.com/
YouTube API:http://code.google.com/apis/youtube/overview.html
在这些页面上,您可以找到代码示例、图书馆等,这对你来说应该足够了。
Twitter API: https://dev.twitter.com/
Youtube API: http://code.google.com/apis/youtube/overview.html
On these pages you will find code examples, libraries etc. which should be sufficient for you.