iPhone:如何使用 xAuth 或 OAuth 身份验证在 Twitter 上上传照片?

发布于 2024-11-29 05:33:12 字数 75 浏览 2 评论 0原文

有没有办法在 iPhone 中使用 xAuth 或 OAuth 身份验证在 Twitter 上上传照片?有我可以使用的示例代码或框架吗?

Is there any way to upload photo on Twitter using xAuth or OAuth authentication in iPhone? Is there any sample code or framework I can use?

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

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

发布评论

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

评论(3

二手情话 2024-12-06 05:33:12

根据这个答案,不可能将图像直接上传到叽叽喳喳。您需要加载到其他一些照片共享网站,并在您的 Twitter 帖子中链接到它。我建议查看 imgur。他们有一个 API,您也许可以使用。

According to this answer it's not possible to upload images directly to Twitter. You need to yup load to some other photo-sharing site, and link to it in your Twitter post. I'd recommend looking into imgur. They have an API which you may be able to use.

半世晨晓 2024-12-06 05:33:12

照片分享上传功能现已在 Twitter 上提供,但尚未发布适用于 iPhone 的稳定库。

Photo sharing uplaod feature is now available on Twitter, but there's no stable library for iphone yet released.

一瞬间的火花 2024-12-06 05:33:12

在 iOS 5 中这非常简单。

只需包含头文件 #import "Twitter/Twitter.h" 并在项目中添加框架 Twitter.framework 即可。

然后添加以下行作为按钮操作:

TWTweetComposeViewController *tweeter =    [[TWTweetComposeViewController alloc] init];
[tweeter setInitialText:@"message"]; // for posting text
[tweeter addImage:image];            // for posting image
[self presentModalViewController:tweeter animated:YES];

It's very easy in iOS 5.

Just include the header file #import "Twitter/Twitter.h" and add the framework Twitter.framework in the project..

Then add the lines below for a button action:

TWTweetComposeViewController *tweeter =    [[TWTweetComposeViewController alloc] init];
[tweeter setInitialText:@"message"]; // for posting text
[tweeter addImage:image];            // for posting image
[self presentModalViewController:tweeter animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文