如何在 JTwitter 中设置 twitter 用户位置?

发布于 2024-09-01 22:59:05 字数 193 浏览 9 评论 0原文

我正在我的应用程序中构建一些基本的 Twitter 功能,并使用 JTwitter JAR 来读取和设置状态。

看起来有一个 User 类可用于设置位置,但一旦获得 Twitter 对象,我就是不知道如何使用 GPS 坐标设置它。

有人能够使用 JTwitter 设置 user.location 属性吗?

谢谢, -格雷格

I'm building some basic Twitter functionality into my app, and am using the JTwitter JAR to read and set status.

It looks like there is a User class that can be used to set the location, but I just can't figure out how to set it with my GPS coordinates once I've got my Twitter object.

Has anyone been able to set the user.location property using JTwitter?

Thanks,
-Gregg

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

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

发布评论

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

评论(2

浅沫记忆 2024-09-08 22:59:06

抱歉遗漏了!

我刚刚添加了对将位置设置为最新版本的支持 (v1.6.2 )。
请参阅 Twitter.setMyLocation()。

注意 - 基于位置的搜索是通过 setSearchLocation() 单独处理的,因为它们需要经度、纬度和半径。

Sorry for the omission!

I've just added support for setting your location to the latest version (v1.6.2).
See Twitter.setMyLocation().

NB - location based searches are handled separately via setSearchLocation(), as they need long, lat and radius.

絕版丫頭 2024-09-08 22:59:06

JTwitter 似乎不支持这一点。

Twitter API 方法 /statuses/update采用 latlong 参数(或单个 place_id 参数)来指定位置。

查看(第~2500行),updateStatus< JTwitter 的 /code> 方法仅传递 statussourcein_reply_to_status_id 参数。如果您想对推文进行地理标记,您需要修改 JTwitter 源以传递 lat/long 参数。

It would appear that JTwitter doesn't support this.

The Twitter API method /statuses/update takes lat and long arguments (or a single place_id argument) to specify the location.

Looking at the source (line ~2500), the updateStatus method of JTwitter only passes the status, source and in_reply_to_status_id arguments. You'll need to modify the JTwitter source to pass the lat/long arguments if you want to geotag your tweets.

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