向某人的 Twitter 发布不可编辑的消息
我正在寻找构建一个 Twitter 应用程序。用户连接的地方,然后我的应用程序向他们的个人资料发送一条推文。现在我有一个包含我的消息的推文框,但因为它是可编辑的,所以有点违背了目的。
这可能吗?
I'm looking to build a twitter app. where the user connects, and then my application sends a tweet to their profile. Right now I have a tweet box with my message, but because it's editable it kind of defeats the purpose.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 REST API 中的标准 POST statuses/update。用户将使用您的应用程序进行身份验证,然后您可以向他们显示将从其帐户中的推文按钮旁边发送的文本。当他们点击按钮时,只需发布显示的文本即可。甚至没有可供他们编辑的文本区域。
Use the standard POST statuses/update from the REST API. The users will authenticate with your app then you can show them the text that will be tweeted from their account next to a tweet button. When they hit the button just tweet the text as displayed. There isn't even a textarea for them to edit.
如果你想阻止某人编辑输入字段,你可以
在 HTML 标签中使用类似: 的内容。
if you want to stop someone editing an input field, you could use something like:
in the HTML tag.