使用 Spring-Social-Twitter Api 发推 inReplyToStatus 不起作用
Tweet with Spring-Social-Twitter Api inReplyToStatus doesn't work
我正在尝试发送一条推文作为对我通过查询找到的另一条推文的回复(回复)。
但是 虽然我正在调用 https://docs.spring.io/spring-social-twitter/docs/current/apidocs/org/springframework/social/twitter/api/TweetData.html#inReplyToStatus(long) 并传递了正确的状态 ID,但这条推文似乎并不是对原始推文的回复。
我在 spring 启动应用程序中使用 org.springframework.social:spring-social-twitter:jar:1.1.0.RELEASE
,我也尝试了最新版本 1.1.2.RELEASE
,但仍然无效。
相关代码:
// Tweet tweet comes from a query
// String statusText is some plain text
final Long inReplyToStatus = tweet.getId();
final TweetData tweetData = new TweetData(statusText);
// try to make it a reply, TODO: doesn't work
tweetData.inReplyToStatus(inReplyToStatus);
// send tweet, but doesn't look like an answer.
final Tweet newTweet = this.twitterTemplateFactory.timelineOperations().updateStatus(tweetData);
你有什么问题吗?我是否必须通过以“@ ...”开头的 statusText
使其成为老派回复?
感谢帮助。
我的猜测是正确的。如果您希望您的答案显示为真实回复,您必须设置 "inReplyToStatus" 字段 和 以“@”开头的 statusText。
问题已解决。
我正在尝试发送一条推文作为对我通过查询找到的另一条推文的回复(回复)。
但是 虽然我正在调用 https://docs.spring.io/spring-social-twitter/docs/current/apidocs/org/springframework/social/twitter/api/TweetData.html#inReplyToStatus(long) 并传递了正确的状态 ID,但这条推文似乎并不是对原始推文的回复。
我在 spring 启动应用程序中使用 org.springframework.social:spring-social-twitter:jar:1.1.0.RELEASE
,我也尝试了最新版本 1.1.2.RELEASE
,但仍然无效。
相关代码:
// Tweet tweet comes from a query
// String statusText is some plain text
final Long inReplyToStatus = tweet.getId();
final TweetData tweetData = new TweetData(statusText);
// try to make it a reply, TODO: doesn't work
tweetData.inReplyToStatus(inReplyToStatus);
// send tweet, but doesn't look like an answer.
final Tweet newTweet = this.twitterTemplateFactory.timelineOperations().updateStatus(tweetData);
你有什么问题吗?我是否必须通过以“@statusText
使其成为老派回复?
感谢帮助。
我的猜测是正确的。如果您希望您的答案显示为真实回复,您必须设置 "inReplyToStatus" 字段 和 以“@”开头的 statusText。
问题已解决。