向某人的 Twitter 发布不可编辑的消息

发布于 2024-11-03 18:14:54 字数 112 浏览 0 评论 0原文

我正在寻找构建一个 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 技术交流群。

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

发布评论

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

评论(2

小霸王臭丫头 2024-11-10 18:14:54

使用 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.

恬淡成诗 2024-11-10 18:14:54

如果你想阻止某人编辑输入字段,你可以

onfocus="this.blur()"

在 HTML 标签中使用类似: 的内容。

if you want to stop someone editing an input field, you could use something like:

onfocus="this.blur()"

in the HTML tag.

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