Overview

Summary

ContactDonateImprint


Appendix E-12: TWEET (UI prompt)


TweetTweetModuleTwitterX

Properties (14)

PropertyTypeEntityReferenceModule
(1) ContentSTRINGTweet
(2) CreatedAtSTRINGTweet
(3) InReplyToTweetLONGTweet
(4) InReplyToUserLONGTweetUserAccountUserAccountModule
(5) IsDeletedBOOLTweet
(6) IsSensitiveBOOLTweet
(7) LanguageSTRINGTweet
(8) LikeCountLONGTweet
(9) QuoteTweetLONGTweet
(10) ReplyCountLONGTweet
(11) RetweetCountLONGTweet
(12) SourceAppSTRINGTweet
(13) UserLONGTweetUserAccountUserAccountModule
(14) ViewCountLONGTweet


Module Interfaces (13)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /tweethashtag/tweet/{id}findAllTweetHashtagOfTweet(id)HashtagModuleGETTweet TweetHashtag
(2) /media/tweet/{id}findAllMediaOfTweet(id)ListModuleGETTweet Media
(3) /report/reportedtweet/{id}findAllReportOfReportedTweet(id)SpaceModuleGETTweet Report
(4) /tweet/{id}updateTweetById(tweet)TweetModulePUTTweet
(5) /poll/tweet/{id}findAllPollOfTweet(id)TweetModuleGETTweet Poll
(6) /tweetfindAllTweet()TweetModuleGETTweet
(7) /promotedtweet/tweet/{id}findAllPromotedTweetOfTweet(id)TweetModuleGETTweet PromotedTweet
(8) /tweet/{id}deleteTweetById(id)TweetModuleDELETETweet
(9) /retweet/tweet/{id}findAllRetweetOfTweet(id)TweetModuleGETTweet Retweet
(10) /tweet/user/{id}findAllTweetOfUser(id)TweetModuleGETUserAccount Tweet
(11) /tweet/inreplytouser/{id}findAllTweetOfInReplyToUser(id)TweetModuleGETUserAccount Tweet
(12) /tweetinsertTweet(tweet)TweetModulePOSTTweet
(13) /tweet/{id}findTweetById(id)TweetModuleGETTweet





Example:

final Tweet tweet = (Tweet) invokeModule(TWEET_MODULE + "/tweet/" + id, Tweet.class);
if (tweet != null) {
    final UserAccount inreplytouser1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + tweet.getInReplyToUser().getId(), UserAccount.class);
    if (inreplytouser1 != null) {
    }
    final UserAccount user2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + tweet.getUser().getId(), UserAccount.class);
    if (user2 != null) {
    }
}
return tweet;


Overview

Summary

ContactDonateImprint