diff --git a/.gitignore b/.gitignore index 36de096d4..ae34a892d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ .DS_Store -.theos \ No newline at end of file +.theos +CLAUDE.md +packages/*.deb \ No newline at end of file diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 000000000..7ff182564 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,64 @@ +# AGENTS.md + +This file provides guidance to Codex (Codex.ai/code) when working with code in this repository. + +## 构建命令 + +需要先安装 [Theos](https://github.com/theos/theos) 和 [cyan](https://github.com/asdfzxcvbn/pyzule-rw)。 + +```bash +# Sideloaded(需要 packages/com.atebits.Tweetie2.ipa) +./build.sh --sideloaded + +# TrollStore(需要 packages/com.atebits.Tweetie2.ipa) +./build.sh --trollstore + +# Rootless .deb +./build.sh --rootless + +# Rootfull .deb +./build.sh --rootfull +``` + +直接调用 make: +```bash +make # debug build +make package # 打包 .deb +make clean # 清理构建产物 +``` + +## 架构概览 + +这是一个 **iOS Theos tweak**,通过 Cydia Substrate 注入 Twitter/X 客户端进程,使用 Logos(`.x` 文件)语法 hook Objective-C 方法。 + +### 核心文件 + +- **`Tweak.x`** — 所有 hook 的入口,使用 `%hook`/`%orig` 语法拦截 Twitter 私有类方法 +- **`BHTManager.m/.h`** — 功能开关管理器,所有设置读写通过 `NSUserDefaults` 完成,方法均为类方法(`+`) +- **`SettingsViewController.m/.h`** — 设置界面,基于 Cephei 框架(`HBListController`) +- **`TWHeaders.h`** — Twitter 私有类/协议的头文件声明 + +### 子模块/依赖目录 + +| 目录 | 用途 | +|------|------| +| `BHDownload/` | 视频下载逻辑 | +| `BHTBundle/` | Bundle 资源加载 | +| `ffmpeg/` | FFmpegKit 头文件(`.a` 静态库在 `lib/`) | +| `JGProgressHUD/` | 进度 HUD UI 组件 | +| `SAMKeychain/` | Keychain 访问(用于 Padlock 功能) | +| `Colours/` | 颜色工具 | +| `CustomTabBar/` | 自定义 Tab Bar | +| `ThemeColor/` | 主题颜色 | +| `AppIcon/` | 应用图标切换 | +| `keychainfix/` | Sideload 模式下的 Keychain 修复子项目 | + +### 设置键(NSUserDefaults) + +`BHTManager` 中每个 `+` 方法对应一个 `NSUserDefaults` 布尔键,例如 `dw_v`(下载视频)、`hide_promoted`(隐藏广告)等。首次启动时在 `T1AppDelegate` hook 中设置默认值(key: `FirstRun_4.3`)。 + +### 构建变体 + +- **Sideloaded/TrollStore**:`make SIDELOADED=1`,额外编译 `keychainfix` 子项目,用 `cyan` 注入 IPA +- **Rootless**:`THEOS_PACKAGE_SCHEME=rootless make package` +- **Rootfull**:`make package`(默认) diff --git a/BHTManager.h b/BHTManager.h index 2699e019e..4f96895b7 100644 --- a/BHTManager.h +++ b/BHTManager.h @@ -31,6 +31,7 @@ + (BOOL)FollowConfirm; + (BOOL)HidePromoted; + (BOOL)HideTopics; ++ (BOOL)HideReposts; + (BOOL)DisableVODCaptions; + (BOOL)Padlock; + (BOOL)changeFont; diff --git a/BHTManager.m b/BHTManager.m index f7b984340..4644e4826 100644 --- a/BHTManager.m +++ b/BHTManager.m @@ -169,6 +169,9 @@ + (BOOL)HidePromoted { + (BOOL)HideTopics { return [[NSUserDefaults standardUserDefaults] boolForKey:@"hide_topics"]; } ++ (BOOL)HideReposts { + return [[NSUserDefaults standardUserDefaults] boolForKey:@"hide_reposts"]; +} + (BOOL)DisableVODCaptions { return [[NSUserDefaults standardUserDefaults] boolForKey:@"dis_VODCaptions"]; } diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..012c55f46 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,64 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## 构建命令 + +需要先安装 [Theos](https://github.com/theos/theos) 和 [cyan](https://github.com/asdfzxcvbn/pyzule-rw)。 + +```bash +# Sideloaded(需要 packages/com.atebits.Tweetie2.ipa) +./build.sh --sideloaded + +# TrollStore(需要 packages/com.atebits.Tweetie2.ipa) +./build.sh --trollstore + +# Rootless .deb +./build.sh --rootless + +# Rootfull .deb +./build.sh --rootfull +``` + +直接调用 make: +```bash +make # debug build +make package # 打包 .deb +make clean # 清理构建产物 +``` + +## 架构概览 + +这是一个 **iOS Theos tweak**,通过 Cydia Substrate 注入 Twitter/X 客户端进程,使用 Logos(`.x` 文件)语法 hook Objective-C 方法。 + +### 核心文件 + +- **`Tweak.x`** — 所有 hook 的入口,使用 `%hook`/`%orig` 语法拦截 Twitter 私有类方法 +- **`BHTManager.m/.h`** — 功能开关管理器,所有设置读写通过 `NSUserDefaults` 完成,方法均为类方法(`+`) +- **`SettingsViewController.m/.h`** — 设置界面,基于 Cephei 框架(`HBListController`) +- **`TWHeaders.h`** — Twitter 私有类/协议的头文件声明 + +### 子模块/依赖目录 + +| 目录 | 用途 | +|------|------| +| `BHDownload/` | 视频下载逻辑 | +| `BHTBundle/` | Bundle 资源加载 | +| `ffmpeg/` | FFmpegKit 头文件(`.a` 静态库在 `lib/`) | +| `JGProgressHUD/` | 进度 HUD UI 组件 | +| `SAMKeychain/` | Keychain 访问(用于 Padlock 功能) | +| `Colours/` | 颜色工具 | +| `CustomTabBar/` | 自定义 Tab Bar | +| `ThemeColor/` | 主题颜色 | +| `AppIcon/` | 应用图标切换 | +| `keychainfix/` | Sideload 模式下的 Keychain 修复子项目 | + +### 设置键(NSUserDefaults) + +`BHTManager` 中每个 `+` 方法对应一个 `NSUserDefaults` 布尔键,例如 `dw_v`(下载视频)、`hide_promoted`(隐藏广告)等。首次启动时在 `T1AppDelegate` hook 中设置默认值(key: `FirstRun_4.3`)。 + +### 构建变体 + +- **Sideloaded/TrollStore**:`make SIDELOADED=1`,额外编译 `keychainfix` 子项目,用 `cyan` 注入 IPA +- **Rootless**:`THEOS_PACKAGE_SCHEME=rootless make package` +- **Rootfull**:`make package`(默认) diff --git a/SettingsViewController.m b/SettingsViewController.m index d217c282b..893e349f3 100644 --- a/SettingsViewController.m +++ b/SettingsViewController.m @@ -184,6 +184,8 @@ - (NSArray *)specifiers { PSSpecifier *mediaUpload4k = [self newSwitchCellWithTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"MEDIA_UPLOAD_4K_ENABLED_OPTION_TITLE"] detailTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"MEDIA_UPLOAD_4K_ENABLED_OPTION_DETAIL_TITLE"] key:@"media_upload_4k_enabled" defaultValue:false changeAction:nil]; PSSpecifier *hideTopics = [self newSwitchCellWithTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_TOPICS_OPTION_TITLE"] detailTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_TOPICS_OPTION_DETAIL_TITLE"] key:@"hide_topics" defaultValue:false changeAction:nil]; + + PSSpecifier *hideReposts = [self newSwitchCellWithTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_REPOSTS_OPTION_TITLE"] detailTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_REPOSTS_OPTION_DETAIL_TITLE"] key:@"hide_reposts" defaultValue:false changeAction:nil]; PSSpecifier *hideWhoToFollow = [self newSwitchCellWithTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_WHO_FOLLOW_OPTION"] detailTitle:[[BHTBundle sharedBundle] localizedStringForKey:@"HIDE_WHO_FOLLOW_OPTION_DETAIL_TITLE"] key:@"hide_who_to_follow" defaultValue:false changeAction:nil]; @@ -275,6 +277,7 @@ - (NSArray *)specifiers { dmReplyLater, mediaUpload4k, hideTopics, + hideReposts, hideWhoToFollow, hideTopicsToFollow, hideTrendVideos, diff --git a/TWHeaders.h b/TWHeaders.h index edfd24144..fba08a45c 100644 --- a/TWHeaders.h +++ b/TWHeaders.h @@ -378,6 +378,7 @@ static NSString *_lastCopiedURL; @interface T1URTTimelineStatusItemViewModel : NSObject @property(nonatomic, readonly) NSString *text; @property(nonatomic, readonly) _Bool isPromoted; +@property(nonatomic, readonly) _Bool isRetweet; @property(nonatomic, retain) id banner; @end diff --git a/Tweak.x b/Tweak.x index f0a96b40f..3f93c6ea0 100644 --- a/Tweak.x +++ b/Tweak.x @@ -4,6 +4,7 @@ #import "BHTBundle/BHTBundle.h" #import "MobileCoreServices/MobileCoreServices.h" #import "MobileCoreServices/UTCoreTypes.h" +#import static UIFont * _Nullable TAEStandardFontGroupReplacement(UIFont *self, SEL _cmd, CGFloat arg1, CGFloat arg2) { BH_BaseImp orig = originalFontsIMP[NSStringFromSelector(_cmd)].pointerValue; @@ -41,6 +42,195 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I } } +static BOOL BHIsRepostItem(id item) { + if (item == nil) { + return false; + } + + Class statusItemClass = objc_getClass("T1URTTimelineStatusItemViewModel"); + return statusItemClass != nil && [item isKindOfClass:statusItemClass] && ((T1URTTimelineStatusItemViewModel *)item).isRetweet; +} + +static BOOL BHShouldHideRepostItem(id item) { + return [BHTManager HideReposts] && BHIsRepostItem(item); +} + +static BOOL BHDataContainsUTF8String(NSData *data, const char *string) { + if (![data isKindOfClass:NSData.class] || string == NULL) { + return false; + } + + NSData *needle = [NSData dataWithBytes:string length:strlen(string)]; + return [data rangeOfData:needle options:0 range:NSMakeRange(0, data.length)].location != NSNotFound; +} + +static BOOL BHShouldFilterRepostJSONData(NSData *data) { + if (![BHTManager HideReposts] || ![data isKindOfClass:NSData.class] || data.length == 0) { + return false; + } + + return BHDataContainsUTF8String(data, "\"retweeted_status_result\"") && BHDataContainsUTF8String(data, "\"entryId\""); +} + +static void BHSetChanged(BOOL *changed) { + if (changed != NULL) { + *changed = true; + } +} + +static NSDictionary *BHDictionaryValue(NSDictionary *dictionary, NSString *key) { + id value = [dictionary objectForKey:key]; + return [value isKindOfClass:NSDictionary.class] ? value : nil; +} + +static NSArray *BHArrayValue(NSDictionary *dictionary, NSString *key) { + id value = [dictionary objectForKey:key]; + return [value isKindOfClass:NSArray.class] ? value : nil; +} + +static BOOL BHTweetResultContainsRepost(NSDictionary *result) { + if (![result isKindOfClass:NSDictionary.class]) { + return false; + } + + NSDictionary *legacy = BHDictionaryValue(result, @"legacy"); + if ([legacy objectForKey:@"retweeted_status_result"] != nil) { + return true; + } + + NSDictionary *tweet = BHDictionaryValue(result, @"tweet"); + NSDictionary *tweetLegacy = BHDictionaryValue(tweet, @"legacy"); + return [tweetLegacy objectForKey:@"retweeted_status_result"] != nil; +} + +static BOOL BHItemContentContainsRepost(NSDictionary *itemContent) { + NSDictionary *tweetResults = BHDictionaryValue(itemContent, @"tweet_results"); + return BHTweetResultContainsRepost(BHDictionaryValue(tweetResults, @"result")); +} + +static BOOL BHTimelineEntryContainsRepost(NSDictionary *entry) { + if (![entry isKindOfClass:NSDictionary.class]) { + return false; + } + + if ([entry objectForKey:@"entryId"] == nil && [entry objectForKey:@"entry_id"] == nil) { + return false; + } + + NSDictionary *content = BHDictionaryValue(entry, @"content"); + if (BHItemContentContainsRepost(BHDictionaryValue(content, @"itemContent"))) { + return true; + } + + for (id moduleItemObject in BHArrayValue(content, @"items")) { + if (![moduleItemObject isKindOfClass:NSDictionary.class]) { + continue; + } + + NSDictionary *moduleItem = moduleItemObject; + NSDictionary *item = BHDictionaryValue(moduleItem, @"item"); + if (BHItemContentContainsRepost(BHDictionaryValue(item, @"itemContent"))) { + return true; + } + } + + return false; +} + +static id BHJSONObjectByFilteringRepostEntries(id object, BOOL *changed) { + if ([object isKindOfClass:NSArray.class]) { + NSArray *array = object; + BOOL arrayChanged = false; + NSMutableArray *filteredArray = [NSMutableArray arrayWithCapacity:array.count]; + + for (id item in array) { + if ([item isKindOfClass:NSDictionary.class] && BHTimelineEntryContainsRepost(item)) { + arrayChanged = true; + BHSetChanged(changed); + continue; + } + + if ([item isKindOfClass:NSDictionary.class] && ([(NSDictionary *)item objectForKey:@"entryId"] != nil || [(NSDictionary *)item objectForKey:@"entry_id"] != nil)) { + [filteredArray addObject:item]; + continue; + } + + BOOL itemChanged = false; + id filteredItem = BHJSONObjectByFilteringRepostEntries(item, &itemChanged); + if (itemChanged) { + arrayChanged = true; + BHSetChanged(changed); + } + [filteredArray addObject:filteredItem ?: item]; + } + + return arrayChanged ? filteredArray : object; + } + + if ([object isKindOfClass:NSDictionary.class]) { + NSDictionary *dictionary = object; + BOOL dictionaryChanged = false; + NSMutableDictionary *filteredDictionary = [NSMutableDictionary dictionaryWithCapacity:dictionary.count]; + + for (id key in dictionary) { + id value = [dictionary objectForKey:key]; + BOOL valueChanged = false; + id filteredValue = BHJSONObjectByFilteringRepostEntries(value, &valueChanged); + if (valueChanged) { + dictionaryChanged = true; + BHSetChanged(changed); + } + [filteredDictionary setObject:filteredValue ?: value forKey:key]; + } + + return dictionaryChanged ? filteredDictionary : object; + } + + return object; +} + +static NSArray *BHSectionsByFilteringReposts(NSArray *sections) { + if (![BHTManager HideReposts] || ![sections isKindOfClass:NSArray.class]) { + return sections; + } + + BOOL changed = false; + NSMutableArray *filteredSections = [NSMutableArray arrayWithCapacity:sections.count]; + for (id section in sections) { + if (![section isKindOfClass:NSArray.class]) { + [filteredSections addObject:section]; + continue; + } + + BOOL sectionChanged = false; + NSMutableArray *filteredItems = [NSMutableArray arrayWithCapacity:[section count]]; + for (id item in section) { + if (BHIsRepostItem(item)) { + changed = true; + sectionChanged = true; + continue; + } + [filteredItems addObject:item]; + } + + [filteredSections addObject:sectionChanged ? filteredItems : section]; + } + + return changed ? filteredSections : sections; +} + +%hook NSJSONSerialization ++ (id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error { + id object = %orig; + if (object != nil && BHShouldFilterRepostJSONData(data)) { + BOOL changed = false; + id filteredObject = BHJSONObjectByFilteringRepostEntries(object, &changed); + return changed ? filteredObject : object; + } + return object; +} +%end + // MARK: Clean cache and Padlock %hook T1AppDelegate - (_Bool)application:(UIApplication *)application didFinishLaunchingWithOptions:(id)arg2 { @@ -247,6 +437,10 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I // MARK: hide ADs // credit goes to haoict https://github.com/haoict/twitter-no-ads %hook TFNItemsDataViewController +- (void)updateSections:(id)arg1 withRowAnimation:(long long)arg2 { + %orig(BHSectionsByFilteringReposts(arg1), arg2); +} + - (id)tableViewCellForItem:(id)arg1 atIndexPath:(id)arg2 { UITableViewCell *_orig = %orig; id tweet = [self itemAtIndexPath:arg2]; @@ -255,7 +449,12 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I if ([BHTManager HidePromoted] && [tweet respondsToSelector:@selector(isPromoted)] && [tweet performSelector:@selector(isPromoted)]) { [_orig setHidden:YES]; } - + + if ([BHTManager HideReposts] && [tweet isKindOfClass:%c(T1URTTimelineStatusItemViewModel)]) { + if (((T1URTTimelineStatusItemViewModel *)tweet).isRetweet) { + [_orig setHidden:YES]; + } + } if ([self.adDisplayLocation isEqualToString:@"PROFILE_TWEETS"]) { if ([BHTManager hideWhoToFollow]) { @@ -315,17 +514,23 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I } } } - + return _orig; } - (double)tableView:(id)arg1 heightForRowAtIndexPath:(id)arg2 { id tweet = [self itemAtIndexPath:arg2]; NSString *class_name = NSStringFromClass([tweet classForCoder]); - + if ([BHTManager HidePromoted] && [tweet respondsToSelector:@selector(isPromoted)] && [tweet performSelector:@selector(isPromoted)]) { return 0; } - + + if ([BHTManager HideReposts] && [tweet isKindOfClass:%c(T1URTTimelineStatusItemViewModel)]) { + if (((T1URTTimelineStatusItemViewModel *)tweet).isRetweet) { + return 0; + } + } + if ([self.adDisplayLocation isEqualToString:@"PROFILE_TWEETS"]) { if ([BHTManager hideWhoToFollow]) { if ([class_name isEqualToString:@"T1URTTimelineUserItemViewModel"] || [class_name isEqualToString:@"T1TwitterSwift.URTTimelineCarouselViewModel"] || [class_name isEqualToString:@"TwitterURT.URTModuleHeaderViewModel"] || [class_name isEqualToString:@"TwitterURT.URTModuleFooterViewModel"]) { @@ -385,7 +590,7 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I } } } - + return %orig; } - (double)tableView:(id)arg1 heightForHeaderInSection:(long long)arg2 { @@ -399,12 +604,31 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I } %end +%hook TFNItemsDataViewControllerBackingStore +- (void)insertItem:(id)item atIndexPath:(NSIndexPath *)indexPath { + if (BHShouldHideRepostItem(item)) { + return; + } + + %orig; +} + +- (void)_tfn_insertItem:(id)item atIndexPath:(NSIndexPath *)indexPath { + if (BHShouldHideRepostItem(item)) { + return; + } + + %orig; +} +%end + %hook TFNTwitterStatus - (_Bool)isCardHidden { return ([BHTManager HidePromoted] && [self isPromoted]) ? true : %orig; } %end +// MARK: Hide Reposts // MARK: DM download %hook T1DirectMessageEntryMediaCell %property (nonatomic, strong) JGProgressHUD *hud; @@ -1320,4 +1544,3 @@ static void batchSwizzlingOnClass(Class cls, NSArray*origSelectors, I }]; %init; } - diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/ar.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/ar.lproj/Localizable.strings index 44d7f1286..0eee23782 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/ar.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/ar.lproj/Localizable.strings @@ -208,3 +208,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "رفع صوت مخصص"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "رفع فيديو مخصص بعد تسجيل المقطع الصوتي بالتغريدة"; + +"HIDE_REPOSTS_OPTION_TITLE" = "إخفاء إعادة التغريدات"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "إزالة جميع إعادة التغريدات من الجدول الزمني"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/en.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/en.lproj/Localizable.strings index 968fa5e5e..4d00b41e4 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/en.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/en.lproj/Localizable.strings @@ -207,3 +207,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "Upload custom voice"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "Upload custom video after recording a voice in the post"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Hide Reposts"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Remove all retweets from the timeline."; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/es.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/es.lproj/Localizable.strings index 79be92b67..3e3bee3dc 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/es.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/es.lproj/Localizable.strings @@ -207,3 +207,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "Subir voz personalizada"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "Subir vídeo personalizado después de grabar una voz en el puesto"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Ocultar retweets"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Eliminar todos los retweets de la línea de tiempo"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/fr.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/fr.lproj/Localizable.strings index 82fece0b0..a338b030e 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/fr.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/fr.lproj/Localizable.strings @@ -192,3 +192,6 @@ "CUSTOM_DIRECT_BACKGROUND_ALERT_OPTION_1" = "Définir une image comme arrière-plan"; "CUSTOM_DIRECT_BACKGROUND_ALERT_OPTION_2" = "Définir une couleur comme arrière-plan"; "CUSTOM_DIRECT_BACKGROUND_ALERT_OPTION_3" = "Réinitialiser par défaut"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Masquer les retweets"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Supprimer tous les retweets du fil"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/id.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/id.lproj/Localizable.strings index 41887fb5a..d1c94e0d2 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/id.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/id.lproj/Localizable.strings @@ -141,3 +141,6 @@ "PEOPLE_WHO_CONTRIBUTED_SECTION_HEADER_TITLE" = "Orang-orang yang telah berkontribusi"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Sembunyikan Retweet"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Hapus semua retweet dari timeline"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/ja.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/ja.lproj/Localizable.strings index aeea5bb50..f64d506f0 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/ja.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/ja.lproj/Localizable.strings @@ -206,3 +206,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "カスタム音声をアップロード"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "ポストで音声を録音した後にカスタム動画をアップロード"; + +"HIDE_REPOSTS_OPTION_TITLE" = "リツイートを非表示"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "タイムラインからすべてのリツイートを削除する"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/pl.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/pl.lproj/Localizable.strings index dfebd16ea..d2fa904e1 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/pl.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/pl.lproj/Localizable.strings @@ -208,3 +208,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "Wyślij niestandardowy głos"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "Wyślij własne wideo po nagraniu głosu w poście."; + +"HIDE_REPOSTS_OPTION_TITLE" = "Ukryj retweety"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Usuń wszystkie retweety z osi czasu"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/ru.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/ru.lproj/Localizable.strings index 2bbf60dde..d5c80f24f 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/ru.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/ru.lproj/Localizable.strings @@ -182,3 +182,6 @@ "PEOPLE_WHO_CONTRIBUTED_SECTION_HEADER_TITLE" = "Люди, которые внесли свой вклад"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Скрыть ретвиты"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Удалить все ретвиты из ленты"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/tr.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/tr.lproj/Localizable.strings index 042eb1f74..8456e048e 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/tr.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/tr.lproj/Localizable.strings @@ -207,3 +207,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "Özel ses yükleyin"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "Gönderide bir ses kaydettikten sonra özel video yükleyin"; + +"HIDE_REPOSTS_OPTION_TITLE" = "Retweetleri Gizle"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "Zaman tünelindeki tüm retweetleri kaldır"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/zh-Hant.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/zh-Hant.lproj/Localizable.strings index aabe3d2a8..a3e04910f 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/zh-Hant.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/zh-Hant.lproj/Localizable.strings @@ -207,3 +207,6 @@ "UPLOAD_CUSTOM_VOICE_OPTION_TITLE" = "上傳自訂語音"; "UPLOAD_CUSTOM_VOICE_OPTION_DETAIL_TITLE" = "在貼文中錄製語音後上傳自訂影片"; + +"HIDE_REPOSTS_OPTION_TITLE" = "隱藏轉推"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "從時間軸移除所有轉推內容"; diff --git a/layout/Library/Application Support/BHT/BHTwitter.bundle/zh_CN.lproj/Localizable.strings b/layout/Library/Application Support/BHT/BHTwitter.bundle/zh_CN.lproj/Localizable.strings index db8f4e482..b44578713 100644 --- a/layout/Library/Application Support/BHT/BHTwitter.bundle/zh_CN.lproj/Localizable.strings +++ b/layout/Library/Application Support/BHT/BHTwitter.bundle/zh_CN.lproj/Localizable.strings @@ -178,3 +178,6 @@ "DEVELOPER_SECTION_HEADER_TITLE" = "开发者"; "PEOPLE_WHO_CONTRIBUTED_SECTION_HEADER_TITLE" = "做出贡献的人"; + +"HIDE_REPOSTS_OPTION_TITLE" = "隐藏转推"; +"HIDE_REPOSTS_OPTION_DETAIL_TITLE" = "从时间轴移除所有转推内容"; diff --git a/response.md b/response.md new file mode 100644 index 000000000..97cbcee36 --- /dev/null +++ b/response.md @@ -0,0 +1,18965 @@ +{ + "data": { + "home": { + "home_timeline_urt": { + "instructions": [ + { + "entries": [ + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAMAAAkoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAADwAMAwAAACABAAJKAgDAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "56327174" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": { + "label": { + "badge": { + "url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg" + }, + "description": "X", + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "userLabelDisplayType": "Badge", + "userLabelType": "BusinessLabel" + } + }, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2035314704307081216/71U1ftM3_normal.jpg" + }, + "core": { + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "name": "Elon Musk", + "screen_name": "elonmusk" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjo0NDE5NjM5Nw==", + "is_blue_verified": true, + "legacy": { + "default_profile": false, + "default_profile_image": false, + "description": "https://t.co/dDtDyVssfm", + "entities": { + "description": { + "urls": [ + { + "display_url": "Terafab.ai", + "expanded_url": "http://Terafab.ai", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/dDtDyVssfm" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 224655, + "follow_request_sent": false, + "followers_count": 239383292, + "friends_count": 1316, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 168466, + "media_count": 4466, + "needs_phone_verification": false, + "normal_followers_count": 239383292, + "notifications": false, + "pinned_tweet_ids_str": [ + "2047881966268117064" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1774145451", + "profile_interstitial_type": "", + "statuses_count": 101876, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1679729435447275522" + }, + "profile_bio": { + "description": "https://t.co/dDtDyVssfm" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "44196397", + "super_follow_eligible": true, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048535299102265720" + ], + "editable_until_msecs": "1777247449000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 1809, + "bookmarked": false, + "conversation_id_str": "2048535299102265720", + "created_at": "Sun Apr 26 22:50:49 +0000 2026", + "display_text_range": [ + 0, + 32 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 68382, + "favorited": false, + "full_text": "Grad school indoctrination camps", + "id_str": "2048535299102265720", + "is_quote_status": true, + "lang": "en", + "quote_count": 193, + "quoted_status_id_str": "2048484882192433327", + "quoted_status_permalink": { + "display": "x.com/wil_da_beast63…", + "expanded": "https://twitter.com/wil_da_beast630/status/2048484882192433327", + "url": "https://t.co/fkaMj5R9Fk" + }, + "reply_count": 2507, + "retweet_count": 7257, + "retweeted": false, + "user_id_str": "44196397" + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1669495664634482689/Ea9al1JC_normal.jpg" + }, + "core": { + "created_at": "Sun Jun 24 22:09:06 +0000 2018", + "name": "Wilfred Reilly", + "screen_name": "wil_da_beast630" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMDExMDA4MzQwMzY3OTUzOTIw", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "A Serious Intellectual now, I was an executive, activist, student, and poor kid. \nButlerian Jihad today!\nhttps://t.co/EcIgfTo5ml \nhttps://t.co/EIg5asLMfy", + "entities": { + "description": { + "urls": [ + { + "display_url": "unifiedsolutionsamerica.com", + "expanded_url": "http://www.unifiedsolutionsamerica.com", + "indices": [ + 105, + 128 + ], + "url": "https://t.co/EcIgfTo5ml" + }, + { + "display_url": "wilfredreilly.com", + "expanded_url": "http://www.wilfredreilly.com", + "indices": [ + 130, + 153 + ], + "url": "https://t.co/EIg5asLMfy" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 158853, + "follow_request_sent": false, + "followers_count": 173687, + "friends_count": 3764, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 977, + "media_count": 4668, + "needs_phone_verification": false, + "normal_followers_count": 173687, + "notifications": false, + "pinned_tweet_ids_str": [ + "1502805846048260099" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1011008340367953920/1773447571", + "profile_interstitial_type": "", + "statuses_count": 144044, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "Aurora, Illinois" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "A Serious Intellectual now, I was an executive, activist, student, and poor kid. \nButlerian Jihad today!\nhttps://t.co/EcIgfTo5ml \nhttps://t.co/EIg5asLMfy" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1011008340367953920", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048484882192433327" + ], + "editable_until_msecs": "1777235429000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 1546, + "bookmarked": false, + "conversation_id_str": "2048484882192433327", + "created_at": "Sun Apr 26 19:30:29 +0000 2026", + "display_text_range": [ + 0, + 17 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 10896, + "favorited": false, + "full_text": "Astonishing fact.", + "id_str": "2048484882192433327", + "is_quote_status": true, + "lang": "en", + "quote_count": 74, + "quoted_status_id_str": "1975023686794256520", + "quoted_status_permalink": { + "display": "x.com/robkhenderson/…", + "expanded": "https://twitter.com/robkhenderson/status/1975023686794256520", + "url": "https://t.co/qVZVDirvsh" + }, + "reply_count": 495, + "retweet_count": 1733, + "retweeted": false, + "user_id_str": "1011008340367953920" + }, + "quotedRefResult": { + "result": { + "__typename": "Tweet", + "rest_id": "1975023686794256520" + } + }, + "rest_id": "2048484882192433327", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "37936490", + "state": "EnabledWithCount" + } + } + }, + "rest_id": "2048535299102265720", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "37672264", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048535299102265720", + "sortIndex": "2048752317548724224" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1438548612464644101/yhtvY1Fk_normal.png" + }, + "core": { + "created_at": "Tue Jan 01 12:46:06 +0000 2019", + "name": "aramco", + "screen_name": "aramco" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMDgwMDgyNzM2MzY1MzQyNzIx", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "where energy is opportunity", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "aramco.com", + "expanded_url": "https://www.aramco.com/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/r5MO6yM1fv" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "follow_request_sent": false, + "followers_count": 1388715, + "friends_count": 3, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 662, + "media_count": 1164, + "needs_phone_verification": false, + "normal_followers_count": 1388715, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1080082736365342721/1704109368", + "profile_interstitial_type": "", + "statuses_count": 1360, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/r5MO6yM1fv", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "Dhahran" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "where energy is opportunity" + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1080082736365342721", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "2al6l2qbql7nudn3xo2fk1yego" + } + ] + }, + "impressionId": "67891a655dd663e7", + "impressionString": "67891a655dd663e7" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1438548612464644101/yhtvY1Fk_normal.png" + }, + "core": { + "created_at": "Tue Jan 01 12:46:06 +0000 2019", + "name": "aramco", + "screen_name": "aramco" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMDgwMDgyNzM2MzY1MzQyNzIx", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "where energy is opportunity", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "aramco.com", + "expanded_url": "https://www.aramco.com/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/r5MO6yM1fv" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "follow_request_sent": false, + "followers_count": 1388715, + "friends_count": 3, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 662, + "media_count": 1164, + "needs_phone_verification": false, + "normal_followers_count": 1388715, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1080082736365342721/1704109368", + "profile_interstitial_type": "", + "statuses_count": 1360, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/r5MO6yM1fv", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "Dhahran" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "where energy is opportunity" + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1080082736365342721", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2042334673117090186" + ], + "editable_until_msecs": "1775769105000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 223, + "bookmarked": false, + "conversation_id_str": "2042334673117090186", + "created_at": "Thu Apr 09 20:11:45 +0000 2026", + "display_text_range": [ + 0, + 186 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/rz8G6ov4rG", + "expanded_url": "https://x.com/aramco/status/2042334673117090186/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2042334563947724800", + "indices": [ + 187, + 210 + ], + "media_key": "13_2042334563947724800", + "media_results": { + "result": { + "media_key": "13_2042334563947724800" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2042334563947724800/img/7L2_RNnqUohtE9ni.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1920 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1920 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/rz8G6ov4rG", + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 64105, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/pl/2DoUJoXlTdnKtQeK.m3u8?tag=14\u0026v=cfc" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/480x270/NcIRfzGbCWYjDr-M.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/640x360/7rH3u19KoDcIVeAS.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/1280x720/RFqAlIRvHb2uGU0-.mp4?tag=14" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/rz8G6ov4rG", + "expanded_url": "https://x.com/aramco/status/2042334673117090186/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2042334563947724800", + "indices": [ + 187, + 210 + ], + "media_key": "13_2042334563947724800", + "media_results": { + "result": { + "media_key": "13_2042334563947724800" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2042334563947724800/img/7L2_RNnqUohtE9ni.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1920 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1920 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/rz8G6ov4rG", + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 64105, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/pl/2DoUJoXlTdnKtQeK.m3u8?tag=14\u0026v=cfc" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/480x270/NcIRfzGbCWYjDr-M.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/640x360/7rH3u19KoDcIVeAS.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2042334563947724800/vid/avc1/1280x720/RFqAlIRvHb2uGU0-.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 2080, + "favorited": false, + "full_text": "We are proud to continue our strategic partnership with the World Robot Olympiad, aiming to empower young innovators to design, build, and program robots that solve real-world challenges https://t.co/rz8G6ov4rG", + "id_str": "2042334673117090186", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 4, + "reply_count": 132, + "retweet_count": 206, + "retweeted": false, + "user_id_str": "1080082736365342721" + }, + "rest_id": "2042334673117090186", + "source": "\u003ca href=\"http://www.socialbakers.com/\" rel=\"nofollow\"\u003eEmplifi\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "19054843", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "promoted-tweet-2042334673117090186-67891a655dd663e7", + "sortIndex": "2048752317548724223" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAkAAAkoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAACDwAMAwAAACABAAJKAgBAAgABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1069285503" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "card": { + "legacy": { + "binding_values": [ + { + "key": "choice1_label", + "value": { + "string_value": "给同学口骚币视频", + "type": "STRING" + } + }, + { + "key": "choice2_label", + "value": { + "string_value": "来者不拒", + "type": "STRING" + } + }, + { + "key": "end_datetime_utc", + "value": { + "string_value": "2026-04-28T11:53:14Z", + "type": "STRING" + } + }, + { + "key": "counts_are_final", + "value": { + "boolean_value": false, + "type": "BOOLEAN" + } + }, + { + "key": "choice2_count", + "value": { + "string_value": "11", + "type": "STRING" + } + }, + { + "key": "choice1_count", + "value": { + "string_value": "56", + "type": "STRING" + } + }, + { + "key": "last_updated_datetime_utc", + "value": { + "string_value": "2026-04-27T13:00:42Z", + "type": "STRING" + } + }, + { + "key": "duration_minutes", + "value": { + "string_value": "1440", + "type": "STRING" + } + }, + { + "key": "choice3_count", + "value": { + "string_value": "16", + "type": "STRING" + } + }, + { + "key": "choice3_label", + "value": { + "string_value": "点赞扣333领取", + "type": "STRING" + } + }, + { + "key": "api", + "value": { + "string_value": "capi://passthrough/1", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://twitter.com", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "poll3choice_text_only", + "url": "card://2048732199231569920", + "user_refs_results": [] + }, + "rest_id": "card://2048732199231569920" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1978472007680581632/QtMcckvj_normal.jpg" + }, + "core": { + "created_at": "Sun Mar 31 04:27:22 +0000 2024", + "name": "瑜瑜", + "screen_name": "xrfxo81568428" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzc0MjkyMzA4MDAwNjc3ODg4", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "天天开心", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 1114, + "follow_request_sent": false, + "followers_count": 13697, + "friends_count": 881, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 20, + "media_count": 139, + "needs_phone_verification": false, + "normal_followers_count": 13697, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048695574812361197" + ], + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 484, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "天天开心" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1774292308000677888", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048732202075295905" + ], + "editable_until_msecs": "1777294395000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "conversation_id_str": "2048732202075295905", + "created_at": "Mon Apr 27 11:53:15 +0000 2026", + "display_text_range": [ + 0, + 63 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 111, + "favorited": false, + "full_text": "刚刚拍的 \n\n你们要的第一视角来啦!!! \n\n注意调低音量🔊 \n\n ▶️ •၊၊||၊|။||||။၊|• 13:32", + "id_str": "2048732202075295905", + "is_quote_status": false, + "lang": "zh", + "quote_count": 0, + "reply_count": 176, + "retweet_count": 10, + "retweeted": false, + "user_id_str": "1774292308000677888" + }, + "rest_id": "2048732202075295905", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "15389", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048732202075295905", + "sortIndex": "2048752317548724222" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_in_network", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABBEAAAkoCAAMKAAKAAAAAAAEBAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAADDwAMAwAAACADAAJKAgBABAABAQAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouInNetwork" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "626826468" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1927715973647441920/gVyISzPW_normal.jpg" + }, + "core": { + "created_at": "Mon May 12 06:14:16 +0000 2025", + "name": "Lovvy🧸软糖", + "screen_name": "Lovvy222" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTIxODExMDk2MTQ0NTgwNjA4", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "已过布尔玛原创认证 原创内容/05 170 60/无线下/无墙内联系方式/不接推广/下方自助入门", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "t.me/Lovvy222bot", + "expanded_url": "https://t.me/Lovvy222bot", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/r59E3duL0l" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 520, + "follow_request_sent": false, + "followers_count": 90741, + "friends_count": 101, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 188, + "media_count": 21, + "needs_phone_verification": false, + "normal_followers_count": 90741, + "notifications": false, + "pinned_tweet_ids_str": [ + "2006272738097521067" + ], + "possibly_sensitive": true, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1921811096144580608/1772724319", + "profile_interstitial_type": "sensitive_media", + "statuses_count": 180, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/r59E3duL0l", + "utc_offset": 0, + "want_retweets": true, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "自助机器人入门完整内容👉🏻" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "已过布尔玛原创认证 原创内容/05 170 60/无线下/无墙内联系方式/不接推广/下方自助入门" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": true, + "muting": false + }, + "rest_id": "1921811096144580608", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048744932446527539" + ], + "editable_until_msecs": "1777297430392", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": {}, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "conversation_id_str": "2048744932446527539", + "created_at": "Mon Apr 27 12:43:50 +0000 2026", + "display_text_range": [ + 0, + 92 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2043169077871685632/G9wGZYWi_normal.jpg" + }, + "core": { + "created_at": "Thu Mar 12 04:44:04 +0000 2026", + "name": "上海刀盾🍧", + "screen_name": "xtf0gp" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDMxOTU0MjkyNDY3NTUyMjU2", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/Honolulu5200", + "expanded_url": "https://t.me/Honolulu5200", + "indices": [ + 20, + 43 + ], + "url": "https://t.co/CHKqotHt6f" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "t.me/Honolulu52oo", + "expanded_url": "https://t.me/Honolulu52oo", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/TIuacRtoDG" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 40, + "follow_request_sent": false, + "followers_count": 16587, + "friends_count": 7, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 29, + "media_count": 17, + "needs_phone_verification": false, + "normal_followers_count": 16587, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048217931566535070" + ], + "possibly_sensitive": true, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2031954292467552256/1774525629", + "profile_interstitial_type": "", + "statuses_count": 57, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/TIuacRtoDG", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "个人tg" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "2042857942911684617" + }, + "profile_bio": { + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2031954292467552256", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + } + }, + "display_url": "pic.x.com/iLw5ie5Tuj", + "expanded_url": "https://x.com/xtf0gp/status/2048217931566535070/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048217855297257472", + "indices": [ + 69, + 92 + ], + "media_key": "13_2048217855297257472", + "media_results": { + "result": { + "media_key": "13_2048217855297257472" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048217855297257472/img/Rk3r3AyLYogLByYf.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "source_status_id_str": "2048217931566535070", + "source_user_id_str": "2031954292467552256", + "type": "video", + "url": "https://t.co/iLw5ie5Tuj", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 9033, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/pl/zEhW4LMScNEgmJXA.m3u8?tag=21" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/320x568/szMgyDg-aSGsSxni.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/480x852/0QnxEMbQHMRbW8Se.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/720x1280/6KO0HkKroHnIKM-r.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2031954292467552256", + "indices": [ + 3, + 10 + ], + "name": "上海刀盾🍧", + "screen_name": "xtf0gp" + }, + { + "id_str": "1552529965371236352", + "indices": [ + 25, + 34 + ], + "name": "布拉尔", + "screen_name": "ToBulaer" + }, + { + "id_str": "1732486642525474816", + "indices": [ + 35, + 44 + ], + "name": "ToBuerma", + "screen_name": "ToBuerma" + }, + { + "id_str": "1591137880688144384", + "indices": [ + 45, + 57 + ], + "name": "川泽森", + "screen_name": "KawasawaSen" + }, + { + "id_str": "1847568958507098112", + "indices": [ + 58, + 68 + ], + "name": "原创榜单", + "screen_name": "BulmaList" + } + ] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2043169077871685632/G9wGZYWi_normal.jpg" + }, + "core": { + "created_at": "Thu Mar 12 04:44:04 +0000 2026", + "name": "上海刀盾🍧", + "screen_name": "xtf0gp" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDMxOTU0MjkyNDY3NTUyMjU2", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/Honolulu5200", + "expanded_url": "https://t.me/Honolulu5200", + "indices": [ + 20, + 43 + ], + "url": "https://t.co/CHKqotHt6f" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "t.me/Honolulu52oo", + "expanded_url": "https://t.me/Honolulu52oo", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/TIuacRtoDG" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 40, + "follow_request_sent": false, + "followers_count": 16587, + "friends_count": 7, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 29, + "media_count": 17, + "needs_phone_verification": false, + "normal_followers_count": 16587, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048217931566535070" + ], + "possibly_sensitive": true, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2031954292467552256/1774525629", + "profile_interstitial_type": "", + "statuses_count": 57, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/TIuacRtoDG", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "个人tg" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "2042857942911684617" + }, + "profile_bio": { + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2031954292467552256", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + } + }, + "display_url": "pic.x.com/iLw5ie5Tuj", + "expanded_url": "https://x.com/xtf0gp/status/2048217931566535070/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048217855297257472", + "indices": [ + 69, + 92 + ], + "media_key": "13_2048217855297257472", + "media_results": { + "result": { + "media_key": "13_2048217855297257472" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048217855297257472/img/Rk3r3AyLYogLByYf.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "source_status_id_str": "2048217931566535070", + "source_user_id_str": "2031954292467552256", + "type": "video", + "url": "https://t.co/iLw5ie5Tuj", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 9033, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/pl/zEhW4LMScNEgmJXA.m3u8?tag=21" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/320x568/szMgyDg-aSGsSxni.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/480x852/0QnxEMbQHMRbW8Se.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/720x1280/6KO0HkKroHnIKM-r.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @xtf0gp: 小芒果🥭要被法克啦!!\n\n@ToBulaer @ToBuerma\n@KawasawaSen @BulmaList https://t.co/iLw5ie5Tuj", + "id_str": "2048744932446527539", + "is_quote_status": false, + "lang": "ja", + "possibly_sensitive": true, + "possibly_sensitive_editable": false, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 101, + "retweeted": false, + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2043169077871685632/G9wGZYWi_normal.jpg" + }, + "core": { + "created_at": "Thu Mar 12 04:44:04 +0000 2026", + "name": "上海刀盾🍧", + "screen_name": "xtf0gp" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDMxOTU0MjkyNDY3NTUyMjU2", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/Honolulu5200", + "expanded_url": "https://t.me/Honolulu5200", + "indices": [ + 20, + 43 + ], + "url": "https://t.co/CHKqotHt6f" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "t.me/Honolulu52oo", + "expanded_url": "https://t.me/Honolulu52oo", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/TIuacRtoDG" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 40, + "follow_request_sent": false, + "followers_count": 16587, + "friends_count": 7, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 29, + "media_count": 17, + "needs_phone_verification": false, + "normal_followers_count": 16587, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048217931566535070" + ], + "possibly_sensitive": true, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2031954292467552256/1774525629", + "profile_interstitial_type": "", + "statuses_count": 57, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/TIuacRtoDG", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "个人tg" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "2042857942911684617" + }, + "profile_bio": { + "description": "常驻上海江浙沪👩🏼‍❤️‍👨🏼|粉丝群 https://t.co/CHKqotHt6f|舞蹈教学✨|马术🐎|Coser✨|英国🇬🇧古早留子|温柔可爱的女生💧想要了解的都在 @Quand5t 的简介" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2031954292467552256", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048217931566535070" + ], + "editable_until_msecs": "1777171783000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 559, + "bookmarked": false, + "conversation_id_str": "2048217931566535070", + "created_at": "Sun Apr 26 01:49:43 +0000 2026", + "display_text_range": [ + 0, + 56 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/iLw5ie5Tuj", + "expanded_url": "https://x.com/xtf0gp/status/2048217931566535070/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048217855297257472", + "indices": [ + 57, + 80 + ], + "media_key": "13_2048217855297257472", + "media_results": { + "result": { + "media_key": "13_2048217855297257472" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048217855297257472/img/Rk3r3AyLYogLByYf.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/iLw5ie5Tuj", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 9033, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/pl/zEhW4LMScNEgmJXA.m3u8?tag=21" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/320x568/szMgyDg-aSGsSxni.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/480x852/0QnxEMbQHMRbW8Se.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/720x1280/6KO0HkKroHnIKM-r.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1552529965371236352", + "indices": [ + 13, + 22 + ], + "name": "布拉尔", + "screen_name": "ToBulaer" + }, + { + "id_str": "1732486642525474816", + "indices": [ + 23, + 32 + ], + "name": "ToBuerma", + "screen_name": "ToBuerma" + }, + { + "id_str": "1591137880688144384", + "indices": [ + 33, + 45 + ], + "name": "川泽森", + "screen_name": "KawasawaSen" + }, + { + "id_str": "1847568958507098112", + "indices": [ + 46, + 56 + ], + "name": "原创榜单", + "screen_name": "BulmaList" + } + ] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/iLw5ie5Tuj", + "expanded_url": "https://x.com/xtf0gp/status/2048217931566535070/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048217855297257472", + "indices": [ + 57, + 80 + ], + "media_key": "13_2048217855297257472", + "media_results": { + "result": { + "media_key": "13_2048217855297257472" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048217855297257472/img/Rk3r3AyLYogLByYf.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/iLw5ie5Tuj", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 9033, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/pl/zEhW4LMScNEgmJXA.m3u8?tag=21" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/320x568/szMgyDg-aSGsSxni.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/480x852/0QnxEMbQHMRbW8Se.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048217855297257472/vid/avc1/720x1280/6KO0HkKroHnIKM-r.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 3035, + "favorited": false, + "full_text": "小芒果🥭要被法克啦!!\n\n@ToBulaer @ToBuerma\n@KawasawaSen @BulmaList https://t.co/iLw5ie5Tuj", + "id_str": "2048217931566535070", + "is_quote_status": false, + "lang": "ja", + "possibly_sensitive": true, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 3, + "retweet_count": 101, + "retweeted": false, + "user_id_str": "2031954292467552256" + }, + "rest_id": "2048217931566535070", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "80425", + "state": "EnabledWithCount" + } + } + }, + "user_id_str": "1921811096144580608" + }, + "rest_id": "2048744932446527539", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "state": "Enabled" + } + } + } + } + }, + "entryId": "tweet-2048744932446527539", + "sortIndex": "2048752317548724221" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABCEAAAkoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAEDwAMAwAAACABAAJKAgBACAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "247788539" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2026582461166338048/E5JV2441_normal.jpg" + }, + "core": { + "created_at": "Tue Feb 24 22:25:04 +0000 2026", + "name": "9", + "screen_name": "77yio" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDI2NDIzMDg4ODI5ODM3MzEz", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "只玩X和ins 其他都是假的 盗图滚", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 11, + "follow_request_sent": false, + "followers_count": 11076, + "friends_count": 7, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 16, + "media_count": 36, + "needs_phone_verification": false, + "normal_followers_count": 11076, + "notifications": false, + "pinned_tweet_ids_str": [ + "2033505853089960298" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2026423088829837313/1772009937", + "profile_interstitial_type": "", + "statuses_count": 76, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "只玩X和ins 其他都是假的 盗图滚" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2026423088829837313", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048047158356856981" + ], + "editable_until_msecs": "1777131068000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 6794, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "77yio" + } + } + }, + "policy": "Community" + }, + "conversation_id_str": "2048047158356856981", + "created_at": "Sat Apr 25 14:31:08 +0000 2026", + "display_text_range": [ + 0, + 4 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/8l2z6XBAu8", + "expanded_url": "https://x.com/77yio/status/2048047158356856981/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048047064031072256", + "indices": [ + 5, + 28 + ], + "media_key": "13_2048047064031072256", + "media_results": { + "result": { + "media_key": "13_2048047064031072256" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048047064031072256/img/CczBJrXpH7OjheCv.jpg", + "original_info": { + "focus_rects": [], + "height": 506, + "width": 888 + }, + "sizes": { + "large": { + "h": 506, + "resize": "fit", + "w": 888 + }, + "medium": { + "h": 506, + "resize": "fit", + "w": 888 + }, + "small": { + "h": 387, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/8l2z6XBAu8", + "video_info": { + "aspect_ratio": [ + 444, + 253 + ], + "duration_millis": 12478, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/pl/OoJBAZU6u1pPH6Du.m3u8?tag=21" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/472x270/6EHVdEeoNUinXS7j.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/630x360/RWVwrREZzd9zf3q9.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/888x506/-NWk-7bh3PZT1i4n.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/8l2z6XBAu8", + "expanded_url": "https://x.com/77yio/status/2048047158356856981/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048047064031072256", + "indices": [ + 5, + 28 + ], + "media_key": "13_2048047064031072256", + "media_results": { + "result": { + "media_key": "13_2048047064031072256" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048047064031072256/img/CczBJrXpH7OjheCv.jpg", + "original_info": { + "focus_rects": [], + "height": 506, + "width": 888 + }, + "sizes": { + "large": { + "h": 506, + "resize": "fit", + "w": 888 + }, + "medium": { + "h": 506, + "resize": "fit", + "w": 888 + }, + "small": { + "h": 387, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/8l2z6XBAu8", + "video_info": { + "aspect_ratio": [ + 444, + 253 + ], + "duration_millis": 12478, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/pl/OoJBAZU6u1pPH6Du.m3u8?tag=21" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/472x270/6EHVdEeoNUinXS7j.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/630x360/RWVwrREZzd9zf3q9.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048047064031072256/vid/avc1/888x506/-NWk-7bh3PZT1i4n.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 32668, + "favorited": false, + "full_text": "深夜福利 https://t.co/8l2z6XBAu8", + "id_str": "2048047158356856981", + "is_quote_status": false, + "lang": "ja", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 8, + "reply_count": 1, + "retweet_count": 483, + "retweeted": false, + "user_id_str": "2026423088829837313" + }, + "rest_id": "2048047158356856981", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "816466", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "tweet-2048047158356856981", + "sortIndex": "2048752317548724220" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAFDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1539936326" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2006199964930879488/FCF1YJ0u_normal.jpg" + }, + "core": { + "created_at": "Wed Apr 01 03:00:40 +0000 2015", + "name": "Yangyi", + "screen_name": "yangyi" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjozMTIyNjYxNTQy", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "人机协同架构师\nReverb Marketing布道者\n新时代人机协同基站 - 牛马AI👉🏻https://t.co/QJVShfywLx\nYangyi实战手记👉🏻https://t.co/Pkue4jV8hK", + "entities": { + "description": { + "urls": [ + { + "display_url": "niuma.limyai.com", + "expanded_url": "https://niuma.limyai.com", + "indices": [ + 46, + 69 + ], + "url": "https://t.co/QJVShfywLx" + }, + { + "display_url": "yangyixxxx.substack.com", + "expanded_url": "https://yangyixxxx.substack.com", + "indices": [ + 82, + 105 + ], + "url": "https://t.co/Pkue4jV8hK" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "lnk.bio/yangyi", + "expanded_url": "https://lnk.bio/yangyi", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/OaWg6uV2Qr" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6772, + "follow_request_sent": false, + "followers_count": 121770, + "friends_count": 558, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1109, + "media_count": 3300, + "needs_phone_verification": false, + "normal_followers_count": 121770, + "notifications": false, + "pinned_tweet_ids_str": [ + "2037767717386907725" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3122661542/1702609915", + "profile_interstitial_type": "", + "statuses_count": 16567, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/OaWg6uV2Qr", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1740381499894157456" + }, + "profile_bio": { + "description": "人机协同架构师\nReverb Marketing布道者\n新时代人机协同基站 - 牛马AI👉🏻https://t.co/QJVShfywLx\nYangyi实战手记👉🏻https://t.co/Pkue4jV8hK" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "3122661542", + "super_follow_eligible": true, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048632188892316134" + ], + "editable_until_msecs": "1777270550000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 805, + "bookmarked": false, + "conversation_id_str": "2048632188892316134", + "created_at": "Mon Apr 27 05:15:50 +0000 2026", + "display_text_range": [ + 0, + 176 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 611, + "favorited": false, + "full_text": "如果你会翻墙,你又用AI\n那么恭喜你,你已经有基本的赚钱能力了\n\n最简单的方法,就是注册Affiliate,做联盟营销\n1、找到任何一个品类\n2、用AI去research一下品类痛点\n3、然后再让AI找各类产品的卖点,去匹配痛点\n4、让AI写文章,发Reddit和各类blog投稿\n5、重点就是做The best 5 / the best 10 / I", + "id_str": "2048632188892316134", + "is_quote_status": false, + "lang": "zh", + "quote_count": 4, + "reply_count": 47, + "retweet_count": 79, + "retweeted": false, + "user_id_str": "3122661542" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDg2MzIxODg4Mjk0MjE1Njg=", + "richtext": { + "richtext_tags": [] + }, + "text": "如果你会翻墙,你又用AI\n那么恭喜你,你已经有基本的赚钱能力了\n\n最简单的方法,就是注册Affiliate,做联盟营销\n1、找到任何一个品类\n2、用AI去research一下品类痛点\n3、然后再让AI找各类产品的卖点,去匹配痛点\n4、让AI写文章,发Reddit和各类blog投稿\n5、重点就是做The best 5 / the best 10 / I compared ...\n6、把所有聚类的对比表格扔到Google sheet里\n7、每个产品Link都挂上你的分销链接\n\n然后就赚钱了。\n当然,这个套路有小秘密,订阅解锁👇🏻" + } + } + }, + "rest_id": "2048632188892316134", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "48899", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048632188892316134", + "sortIndex": "2048752317548724219" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1842060704012238850/1UxDe6oU_normal.jpg" + }, + "core": { + "created_at": "Mon Sep 09 02:59:41 +0000 2024", + "name": "Karma.Domains", + "screen_name": "KarmaDomains" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODMyOTc3MTE0MDQxMzgwODY0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "https://t.co/RtLpmmAhVS — domain auction aggregator \u0026 history analyzer via Wayback Machine for SEO experts, investors, PBN builders \u0026 linkbuilders seeking quality assets", + "entities": { + "description": { + "urls": [ + { + "display_url": "Karma.Domains", + "expanded_url": "http://Karma.Domains", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/RtLpmmAhVS" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "karma.domains", + "expanded_url": "https://karma.domains/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/2fZVNDhs6V" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 62, + "follow_request_sent": false, + "followers_count": 385, + "friends_count": 288, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "media_count": 849, + "needs_phone_verification": false, + "normal_followers_count": 385, + "notifications": false, + "pinned_tweet_ids_str": [ + "1958756806664057338" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1832977114041380864/1725852627", + "profile_interstitial_type": "", + "statuses_count": 878, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/2fZVNDhs6V", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "https://t.co/RtLpmmAhVS — domain auction aggregator \u0026 history analyzer via Wayback Machine for SEO experts, investors, PBN builders \u0026 linkbuilders seeking quality assets" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1832977114041380864", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "2ba0rfc07ug2270zk68lxvg23w" + } + ] + }, + "impressionId": "6789661f563840e6", + "impressionString": "6789661f563840e6" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "card": { + "legacy": { + "binding_values": [ + { + "key": "unified_card", + "value": { + "string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Just Try it with Free Credits!\",\"is_rtl\":false},\"subtitle\":{\"content\":\"karma.domains\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_2025797750097604608\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://karma.domains/app/?utm_source=x.com\u0026utm_medium=cpc\u0026utm_campaign=targeting\u0026utm_content=interests_seo\",\"vanity\":\"karma.domains\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_2025797750097604608\":{\"id\":2025797750097604608,\"id_str\":\"2025797750097604608\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/HB0UUhFacAA2oyF.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":1248,\"height\":653,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":653,\"w\":1166},{\"x\":204,\"y\":0,\"h\":653,\"w\":653},{\"x\":244,\"y\":0,\"h\":653,\"w\":573},{\"x\":367,\"y\":0,\"h\":653,\"w\":327},{\"x\":0,\"y\":0,\"h\":653,\"w\":1248}]},\"sizes\":{\"large\":{\"w\":1248,\"h\":653,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":628,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":356,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":1832977114041380864,\"source_user_id_str\":\"1832977114041380864\",\"media_key\":\"3_2025797750097604608\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":248,\"green\":248,\"blue\":248},\"percentage\":70.72},{\"rgb\":{\"red\":186,\"green\":143,\"blue\":112},\"percentage\":13.57},{\"rgb\":{\"red\":123,\"green\":167,\"blue\":193},\"percentage\":4.36},{\"rgb\":{\"red\":64,\"green\":62,\"blue\":62},\"percentage\":2.9},{\"rgb\":{\"red\":186,\"green\":219,\"blue\":166},\"percentage\":1.7}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://twitter.com", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "unified_card", + "url": "card://2025799812336287744", + "user_refs_results": [] + }, + "rest_id": "card://2025799812336287744" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1842060704012238850/1UxDe6oU_normal.jpg" + }, + "core": { + "created_at": "Mon Sep 09 02:59:41 +0000 2024", + "name": "Karma.Domains", + "screen_name": "KarmaDomains" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODMyOTc3MTE0MDQxMzgwODY0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "https://t.co/RtLpmmAhVS — domain auction aggregator \u0026 history analyzer via Wayback Machine for SEO experts, investors, PBN builders \u0026 linkbuilders seeking quality assets", + "entities": { + "description": { + "urls": [ + { + "display_url": "Karma.Domains", + "expanded_url": "http://Karma.Domains", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/RtLpmmAhVS" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "karma.domains", + "expanded_url": "https://karma.domains/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/2fZVNDhs6V" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 62, + "follow_request_sent": false, + "followers_count": 385, + "friends_count": 288, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "media_count": 849, + "needs_phone_verification": false, + "normal_followers_count": 385, + "notifications": false, + "pinned_tweet_ids_str": [ + "1958756806664057338" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1832977114041380864/1725852627", + "profile_interstitial_type": "", + "statuses_count": 878, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/2fZVNDhs6V", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "https://t.co/RtLpmmAhVS — domain auction aggregator \u0026 history analyzer via Wayback Machine for SEO experts, investors, PBN builders \u0026 linkbuilders seeking quality assets" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1832977114041380864", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2025799814576042421" + ], + "editable_until_msecs": "1771826887000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "KarmaDomains" + } + } + }, + "policy": "ByInvitation" + }, + "conversation_id_str": "2025799814576042421", + "created_at": "Mon Feb 23 05:08:07 +0000 2026", + "display_text_range": [ + 0, + 124 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 1, + "favorited": false, + "full_text": "The Best Expired Domains!\n\nIt’s a Powerful Alternative to Spamzilla and ExpiredDomainsNet — like if they were built in 2026!", + "id_str": "2025799814576042421", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "scopes": { + "followers": false + }, + "user_id_str": "1832977114041380864" + }, + "rest_id": "2025799814576042421", + "source": "\u003ca href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\"\u003eadvertiser-interface\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "5686", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "promoted-tweet-2025799814576042421-6789661f563840e6", + "sortIndex": "2048752317548724218" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAHDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "40128143" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1992016946083094528/CDSQmpFH_normal.jpg" + }, + "core": { + "created_at": "Wed Dec 05 11:41:06 +0000 2018", + "name": "Soran", + "screen_name": "Soranlan" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMDcwMjgxOTA3MzQ5NDc5NDI0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "INTJ Scorpio ♏️ \nClaude Code / Agent 工作流\nGPT Image/🍌 / Seedance 实战\n懒人自动化 SOP", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 6977, + "follow_request_sent": false, + "followers_count": 3190, + "friends_count": 388, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 43, + "media_count": 647, + "needs_phone_verification": false, + "normal_followers_count": 3190, + "notifications": false, + "pinned_tweet_ids_str": [ + "2020288614467264961" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1070281907349479424/1768783275", + "profile_interstitial_type": "", + "statuses_count": 5798, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1855751144028717537" + }, + "profile_bio": { + "description": "INTJ Scorpio ♏️ \nClaude Code / Agent 工作流\nGPT Image/🍌 / Seedance 实战\n懒人自动化 SOP" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1070281907349479424", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048591383397605824" + ], + "editable_until_msecs": "1777260821000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 62, + "bookmarked": false, + "conversation_id_str": "2048591383397605824", + "created_at": "Mon Apr 27 02:33:41 +0000 2026", + "display_text_range": [ + 0, + 144 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/yCyqlV4VSZ", + "expanded_url": "https://x.com/Soranlan/status/2048591383397605824/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048591279626596352", + "indices": [ + 145, + 168 + ], + "media_key": "13_2048591279626596352", + "media_results": { + "result": { + "media_key": "13_2048591279626596352" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048591279626596352/img/wzzluUsaUIRN94Ah.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 656 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 656 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 615 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 349 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/yCyqlV4VSZ", + "video_info": { + "aspect_ratio": [ + 41, + 80 + ], + "duration_millis": 78390, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/pl/wfFT4fO5Mqy_f4sn.m3u8?tag=21\u0026v=d4e" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/320x624/axrvDCLN-kFLh41U.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/480x936/SGkoZ7HJCAYhpi6t.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/656x1280/GX3jBiKm9BGpcCFR.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/yCyqlV4VSZ", + "expanded_url": "https://x.com/Soranlan/status/2048591383397605824/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048591279626596352", + "indices": [ + 145, + 168 + ], + "media_key": "13_2048591279626596352", + "media_results": { + "result": { + "media_key": "13_2048591279626596352" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048591279626596352/img/wzzluUsaUIRN94Ah.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 656 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 656 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 615 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 349 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/yCyqlV4VSZ", + "video_info": { + "aspect_ratio": [ + 41, + 80 + ], + "duration_millis": 78390, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/pl/wfFT4fO5Mqy_f4sn.m3u8?tag=21\u0026v=d4e" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/320x624/axrvDCLN-kFLh41U.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/480x936/SGkoZ7HJCAYhpi6t.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048591279626596352/vid/avc1/656x1280/GX3jBiKm9BGpcCFR.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 53, + "favorited": false, + "full_text": "昨天刷到个视频,image2杀死了比赛!\n现在真的能一句话让gpt-image2直接做出可以编辑的psd文件!\n\n我们群里好几个设计师为此感叹,天这会是真的要变了\n以前要好好长时间做的工作,现在一句话就可以搞定,提质增效得不要不要的!\n\n操作步骤也是so easy:\n先让 image-2 https://t.co/yCyqlV4VSZ", + "id_str": "2048591383397605824", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 11, + "retweet_count": 8, + "retweeted": false, + "user_id_str": "1070281907349479424" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDg1OTEzODMzMzA1MjUxODQ=", + "richtext": { + "richtext_tags": [] + }, + "text": "昨天刷到个视频,image2杀死了比赛!\n现在真的能一句话让gpt-image2直接做出可以编辑的psd文件!\n\n我们群里好几个设计师为此感叹,天这会是真的要变了\n以前要好好长时间做的工作,现在一句话就可以搞定,提质增效得不要不要的!\n\n操作步骤也是so easy:\n先让 image-2 生成设计图,然后多轮对话调整,拆分分成若干图像,生成单独一个独立图像,需求进行精确收窄\n\n差不多定稿后,让它直接分层生成png素材,最后整图拼合成 psd 文件!\n\n 唰的一下,整个压缩包下载下来\n\n 最后,直接交付,或者 PhotoShop 里精调一下!!\n \nperfect!!!\n\n不过,目前这个算是新东西,可能,现阶段生成的psd文件可能不会很精细,分层或许不太精确。\n其未来可期,下一个版本迭代就不好说是什么样恐怖的存在了" + } + } + }, + "rest_id": "2048591383397605824", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "8406", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048591383397605824", + "sortIndex": "2048752317548724217" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAIDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "844589290" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1971676890487496704/LrPYG7lH_normal.jpg" + }, + "core": { + "created_at": "Fri Feb 19 05:33:57 +0000 2021", + "name": "Sizhe思哲", + "screen_name": "Sizhe_bitcat" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMzYyNjM2NDcwMDc5NTI4OTY3", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Web3 冒险家、社会观察家、gamefi 资深玩家,曾经几万爆赚A8,后退圈投资实体基本归零,回归web3再次起航。慢即是快、永不放弃。", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 25298, + "follow_request_sent": false, + "followers_count": 41846, + "friends_count": 18237, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 79, + "media_count": 1632, + "needs_phone_verification": false, + "normal_followers_count": 41846, + "notifications": false, + "pinned_tweet_ids_str": [ + "2009377102483853471" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1362636470079528967/1758919673", + "profile_interstitial_type": "", + "statuses_count": 18660, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Web3 冒险家、社会观察家、gamefi 资深玩家,曾经几万爆赚A8,后退圈投资实体基本归零,回归web3再次起航。慢即是快、永不放弃。" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1362636470079528967", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048430653612626028" + ], + "editable_until_msecs": "1777222500000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 242, + "bookmarked": false, + "conversation_id_str": "2048430653612626028", + "created_at": "Sun Apr 26 15:55:00 +0000 2026", + "display_text_range": [ + 0, + 91 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/t6jRZzG9rz", + "expanded_url": "https://x.com/Sizhe_bitcat/status/2048430653612626028/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048430239278329856", + "indices": [ + 92, + 115 + ], + "media_key": "13_2048430239278329856", + "media_results": { + "result": { + "media_key": "13_2048430239278329856" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048430239278329856/img/LxCnWSWZ0WAu9cvM.jpg", + "original_info": { + "focus_rects": [], + "height": 1920, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1920, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/t6jRZzG9rz", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 16600, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/pl/Na-wMFDFaZ8eW54I.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/320x568/GMQknQXRLeScUW1y.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/480x852/vsum4aYZVxHlzz3V.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/720x1280/IpICN_UtbrxURcy0.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/1080x1920/bXFeBkykLfZT6ffB.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/t6jRZzG9rz", + "expanded_url": "https://x.com/Sizhe_bitcat/status/2048430653612626028/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048430239278329856", + "indices": [ + 92, + 115 + ], + "media_key": "13_2048430239278329856", + "media_results": { + "result": { + "media_key": "13_2048430239278329856" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048430239278329856/img/LxCnWSWZ0WAu9cvM.jpg", + "original_info": { + "focus_rects": [], + "height": 1920, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1920, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/t6jRZzG9rz", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 16600, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/pl/Na-wMFDFaZ8eW54I.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/320x568/GMQknQXRLeScUW1y.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/480x852/vsum4aYZVxHlzz3V.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/720x1280/IpICN_UtbrxURcy0.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048430239278329856/vid/avc1/1080x1920/bXFeBkykLfZT6ffB.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 863, + "favorited": false, + "full_text": "杭州北高峰大瓜,一对情侣爬北高峰,但不是一起来的。\n\n男的带着女的闺蜜来的。😂\n\n女的带着另一个闺蜜来的,结果在半道相遇了。\n\n然后就上演了全武行🙃\n\n这也太巧合了吧,这都能碰到。🙉 https://t.co/t6jRZzG9rz", + "id_str": "2048430653612626028", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 12, + "reply_count": 616, + "retweet_count": 57, + "retweeted": false, + "user_id_str": "1362636470079528967" + }, + "rest_id": "2048430653612626028", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "696274", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048430653612626028", + "sortIndex": "2048752317548724216" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAJDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1137832894" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2003105127641808896/f4vQS7RF_normal.jpg" + }, + "core": { + "created_at": "Sun Dec 15 02:15:26 +0000 2024", + "name": "烧杯学长", + "screen_name": "maimaiRC_" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODY4MTE3NjAyMzU2MzU5MTY4", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "交友投稿| 情感分析|大赛举办|分享宝宝们的日常|偶尔抽奖|接正规有偿转发|所有投稿均已认证|可接认证|推广自辩|高价收号❤️❤️", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 963, + "follow_request_sent": false, + "followers_count": 137537, + "friends_count": 220, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 185, + "media_count": 1668, + "needs_phone_verification": false, + "normal_followers_count": 137537, + "notifications": false, + "pinned_tweet_ids_str": [ + "2027673517630824782" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1868117602356359168/1766412467", + "profile_interstitial_type": "", + "statuses_count": 2305, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "爱这里💙" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "交友投稿| 情感分析|大赛举办|分享宝宝们的日常|偶尔抽奖|接正规有偿转发|所有投稿均已认证|可接认证|推广自辩|高价收号❤️❤️" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1868117602356359168", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048402103115383291" + ], + "editable_until_msecs": "1777215693000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 144, + "bookmarked": false, + "conversation_id_str": "2048402103115383291", + "created_at": "Sun Apr 26 14:01:33 +0000 2026", + "display_text_range": [ + 0, + 8 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/I2yxEgCng2", + "expanded_url": "https://x.com/maimaiRC_/status/2048402103115383291/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048402095817289729", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048402095817289729", + "media_results": { + "result": { + "media_key": "3_2048402095817289729" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG1i2m5a8AER51n.jpg", + "original_info": { + "focus_rects": [ + { + "h": 425, + "w": 759, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 425, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 373, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 213, + "x": 44, + "y": 0 + }, + { + "h": 425, + "w": 1206, + "x": 0, + "y": 0 + } + ], + "height": 425, + "width": 1206 + }, + "sizes": { + "large": { + "h": 425, + "resize": "fit", + "w": 1206 + }, + "medium": { + "h": 423, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 240, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/I2yxEgCng2" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/I2yxEgCng2", + "expanded_url": "https://x.com/maimaiRC_/status/2048402103115383291/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 453, + "y": 576 + }, + { + "h": 114, + "w": 114, + "x": 607, + "y": 463 + } + ] + }, + "medium": { + "faces": [ + { + "h": 53, + "w": 53, + "x": 383, + "y": 488 + }, + { + "h": 96, + "w": 96, + "x": 514, + "y": 392 + } + ] + }, + "orig": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 453, + "y": 576 + }, + { + "h": 114, + "w": 114, + "x": 607, + "y": 463 + } + ] + }, + "small": { + "faces": [ + { + "h": 30, + "w": 30, + "x": 217, + "y": 276 + }, + { + "h": 54, + "w": 54, + "x": 291, + "y": 222 + } + ] + } + }, + "id_str": "2048402095855063040", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048402095855063040", + "media_results": { + "result": { + "media_key": "3_2048402095855063040" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG1i2nCbUAAx6wH.jpg", + "original_info": { + "focus_rects": [ + { + "h": 605, + "w": 1080, + "x": 0, + "y": 811 + }, + { + "h": 1080, + "w": 1080, + "x": 0, + "y": 336 + }, + { + "h": 1231, + "w": 1080, + "x": 0, + "y": 185 + }, + { + "h": 1416, + "w": 708, + "x": 35, + "y": 0 + }, + { + "h": 1416, + "w": 1080, + "x": 0, + "y": 0 + } + ], + "height": 1416, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1416, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 915 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 519 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/I2yxEgCng2" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/I2yxEgCng2", + "expanded_url": "https://x.com/maimaiRC_/status/2048402103115383291/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048402095817289729", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048402095817289729", + "media_results": { + "result": { + "media_key": "3_2048402095817289729" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG1i2m5a8AER51n.jpg", + "original_info": { + "focus_rects": [ + { + "h": 425, + "w": 759, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 425, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 373, + "x": 0, + "y": 0 + }, + { + "h": 425, + "w": 213, + "x": 44, + "y": 0 + }, + { + "h": 425, + "w": 1206, + "x": 0, + "y": 0 + } + ], + "height": 425, + "width": 1206 + }, + "sizes": { + "large": { + "h": 425, + "resize": "fit", + "w": 1206 + }, + "medium": { + "h": 423, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 240, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/I2yxEgCng2" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/I2yxEgCng2", + "expanded_url": "https://x.com/maimaiRC_/status/2048402103115383291/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 453, + "y": 576 + }, + { + "h": 114, + "w": 114, + "x": 607, + "y": 463 + } + ] + }, + "medium": { + "faces": [ + { + "h": 53, + "w": 53, + "x": 383, + "y": 488 + }, + { + "h": 96, + "w": 96, + "x": 514, + "y": 392 + } + ] + }, + "orig": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 453, + "y": 576 + }, + { + "h": 114, + "w": 114, + "x": 607, + "y": 463 + } + ] + }, + "small": { + "faces": [ + { + "h": 30, + "w": 30, + "x": 217, + "y": 276 + }, + { + "h": 54, + "w": 54, + "x": 291, + "y": 222 + } + ] + } + }, + "id_str": "2048402095855063040", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048402095855063040", + "media_results": { + "result": { + "media_key": "3_2048402095855063040" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG1i2nCbUAAx6wH.jpg", + "original_info": { + "focus_rects": [ + { + "h": 605, + "w": 1080, + "x": 0, + "y": 811 + }, + { + "h": 1080, + "w": 1080, + "x": 0, + "y": 336 + }, + { + "h": 1231, + "w": 1080, + "x": 0, + "y": 185 + }, + { + "h": 1416, + "w": 708, + "x": 35, + "y": 0 + }, + { + "h": 1416, + "w": 1080, + "x": 0, + "y": 0 + } + ], + "height": 1416, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1416, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 915 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 519 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/I2yxEgCng2" + } + ] + }, + "favorite_count": 522, + "favorited": false, + "full_text": "江西梨形身材小美 https://t.co/I2yxEgCng2", + "id_str": "2048402103115383291", + "is_quote_status": false, + "lang": "ja", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 408, + "retweet_count": 10, + "retweeted": false, + "user_id_str": "1868117602356359168" + }, + "rest_id": "2048402103115383291", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "139284", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048402103115383291", + "sortIndex": "2048752317548724215" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAKDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-479355088" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1636981205504786434/xDl77JIw_normal.jpg" + }, + "core": { + "created_at": "Wed Aug 14 02:18:36 +0000 2013", + "name": "歸藏(guizang.ai)", + "screen_name": "op7418" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNjY5Mjc2MjU2", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "关注人工智能、LLM 、 AI 图像视频和设计(Interested in AI, LLM, Stable Diffusion, and design)\n\n歸藏的 AIGC 周刊|公众号:歸藏的AI工具箱", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "guizang.ai", + "expanded_url": "https://www.guizang.ai/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/YJB89MPIvZ" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 42301, + "follow_request_sent": false, + "followers_count": 144033, + "friends_count": 1251, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2661, + "media_count": 8191, + "needs_phone_verification": false, + "normal_followers_count": 144033, + "notifications": false, + "pinned_tweet_ids_str": [ + "2047486546300051478" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1669276256/1706450781", + "profile_interstitial_type": "", + "statuses_count": 24157, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/YJB89MPIvZ", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "关注人工智能、LLM 、 AI 图像视频和设计(Interested in AI, LLM, Stable Diffusion, and design)\n\n歸藏的 AIGC 周刊|公众号:歸藏的AI工具箱" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1669276256", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048599141056758024" + ], + "editable_until_msecs": "1777262671000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 62, + "bookmarked": false, + "conversation_id_str": "2048599141056758024", + "created_at": "Mon Apr 27 03:04:31 +0000 2026", + "display_text_range": [ + 0, + 39 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 53, + "favorited": false, + "full_text": "看来真的很受欢迎,最近看到大家分享的线下 PPT 里面,很多都用了我这个模板。", + "id_str": "2048599141056758024", + "is_quote_status": true, + "lang": "zh", + "quote_count": 0, + "quoted_status_id_str": "2047486546300051478", + "quoted_status_permalink": { + "display": "x.com/op7418/status/…", + "expanded": "https://twitter.com/op7418/status/2047486546300051478", + "url": "https://t.co/D2dMyfOvTL" + }, + "reply_count": 31, + "retweet_count": 12, + "retweeted": false, + "user_id_str": "1669276256" + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "article": { + "article_results": { + "result": { + "cover_media": { + "id": "QXBpTWVkaWE6DAAFCgABHGogFm0aMAAKAAIAAAAAY38iYAAA", + "media_id": "2047484261285113856", + "media_info": { + "__typename": "ApiImage", + "color_info": { + "palette": [ + { + "percentage": 96.26, + "rgb": { + "blue": 15, + "green": 17, + "red": 17 + } + }, + { + "percentage": 2.34, + "rgb": { + "blue": 213, + "green": 217, + "red": 218 + } + } + ] + }, + "original_img_height": 1639, + "original_img_url": "https://pbs.twimg.com/media/HGogFm0aMAAhWiM.jpg", + "original_img_width": 4096 + }, + "media_key": "3_2047484261285113856" + }, + "id": "QXJ0aWNsZUVudGl0eToyMDQ3NDg0MTcxMjU4NjM0MjQw", + "lifecycle_state": { + "modified_at_secs": 1776993807 + }, + "metadata": { + "first_published_at_secs": 1776993807 + }, + "preview_text": "上周被李继刚老师邀请去做了场私享会关于 AI 和组织的访谈。\n散场之后,发现大家问得最多的一句话是:\"那个 PPT 是什么做的,能不能开源一下?\"\n没想到副产品成了主产品。\n索性就把它开源了,叫", + "rest_id": "2047484171258634240", + "title": "开源一个 PPT Skill|压进了我 10 年的设计经验" + } + } + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1636981205504786434/xDl77JIw_normal.jpg" + }, + "core": { + "created_at": "Wed Aug 14 02:18:36 +0000 2013", + "name": "歸藏(guizang.ai)", + "screen_name": "op7418" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNjY5Mjc2MjU2", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "关注人工智能、LLM 、 AI 图像视频和设计(Interested in AI, LLM, Stable Diffusion, and design)\n\n歸藏的 AIGC 周刊|公众号:歸藏的AI工具箱", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "guizang.ai", + "expanded_url": "https://www.guizang.ai/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/YJB89MPIvZ" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 42301, + "follow_request_sent": false, + "followers_count": 144033, + "friends_count": 1251, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2661, + "media_count": 8191, + "needs_phone_verification": false, + "normal_followers_count": 144033, + "notifications": false, + "pinned_tweet_ids_str": [ + "2047486546300051478" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1669276256/1706450781", + "profile_interstitial_type": "", + "statuses_count": 24157, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/YJB89MPIvZ", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "关注人工智能、LLM 、 AI 图像视频和设计(Interested in AI, LLM, Stable Diffusion, and design)\n\n歸藏的 AIGC 周刊|公众号:歸藏的AI工具箱" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1669276256", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2047486546300051478" + ], + "editable_until_msecs": "1776997407000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 4843, + "bookmarked": false, + "conversation_id_str": "2047486546300051478", + "created_at": "Fri Apr 24 01:23:27 +0000 2026", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "x.com/i/article/2047…", + "expanded_url": "http://x.com/i/article/2047484171258634240", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/ip9kyn2Trk" + } + ], + "user_mentions": [] + }, + "favorite_count": 2841, + "favorited": false, + "full_text": "https://t.co/ip9kyn2Trk", + "id_str": "2047486546300051478", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 58, + "reply_count": 77, + "retweet_count": 561, + "retweeted": false, + "user_id_str": "1669276256" + }, + "rest_id": "2047486546300051478", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "936255", + "state": "EnabledWithCount" + } + } + }, + "rest_id": "2048599141056758024", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "15262", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048599141056758024", + "sortIndex": "2048752317548724214" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2033015873435217920/9pfPMk_6_normal.jpg" + }, + "core": { + "created_at": "Mon Apr 28 04:49:02 +0000 2025", + "name": "Sharpa", + "screen_name": "SharpaRobotics" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTE2NzE2MjA4NzIxODg3MjMy", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Sharpa is an AI robotics company dedicated to developing ultra-high performance robots and core components.\nWe Manufacture Time by Making Robots Useful.", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "sharpa.com", + "expanded_url": "https://www.sharpa.com/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/lmHm70mPXh" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 834, + "follow_request_sent": false, + "followers_count": 4182, + "friends_count": 117, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 60, + "media_count": 64, + "needs_phone_verification": false, + "normal_followers_count": 4182, + "notifications": false, + "pinned_tweet_ids_str": [ + "2033923501732552857" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1916716208721887232/1773546806", + "profile_interstitial_type": "", + "statuses_count": 193, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/lmHm70mPXh", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "United States " + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Sharpa is an AI robotics company dedicated to developing ultra-high performance robots and core components.\nWe Manufacture Time by Making Robots Useful." + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1916716208721887232", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "29iz1yawn6u9rpqrqbkobhxa7b" + } + ] + }, + "impressionId": "6789d242546e7f1f", + "impressionString": "6789d242546e7f1f" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2033015873435217920/9pfPMk_6_normal.jpg" + }, + "core": { + "created_at": "Mon Apr 28 04:49:02 +0000 2025", + "name": "Sharpa", + "screen_name": "SharpaRobotics" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTE2NzE2MjA4NzIxODg3MjMy", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Sharpa is an AI robotics company dedicated to developing ultra-high performance robots and core components.\nWe Manufacture Time by Making Robots Useful.", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "sharpa.com", + "expanded_url": "https://www.sharpa.com/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/lmHm70mPXh" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 834, + "follow_request_sent": false, + "followers_count": 4182, + "friends_count": 117, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 60, + "media_count": 64, + "needs_phone_verification": false, + "normal_followers_count": 4182, + "notifications": false, + "pinned_tweet_ids_str": [ + "2033923501732552857" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1916716208721887232/1773546806", + "profile_interstitial_type": "", + "statuses_count": 193, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/lmHm70mPXh", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "United States " + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Sharpa is an AI robotics company dedicated to developing ultra-high performance robots and core components.\nWe Manufacture Time by Making Robots Useful." + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1916716208721887232", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2047605606421598216" + ], + "editable_until_msecs": "1777025793000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 58, + "bookmarked": false, + "conversation_id_str": "2047605606421598216", + "created_at": "Fri Apr 24 09:16:33 +0000 2026", + "display_text_range": [ + 0, + 283 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/ZA2nnSi76N", + "expanded_url": "https://x.com/SharpaRobotics/status/2047605606421598216/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2047597407219908608", + "indices": [ + 284, + 307 + ], + "media_key": "13_2047597407219908608", + "media_results": { + "result": { + "media_key": "13_2047597407219908608" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2047597407219908608/img/dr1kMEIHmISUIq15.jpg", + "original_info": { + "focus_rects": [], + "height": 720, + "width": 720 + }, + "sizes": { + "large": { + "h": 720, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 720, + "resize": "fit", + "w": 720 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/ZA2nnSi76N", + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 64733, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/pl/z7XlDRAfxR03PzqW.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/320x320/wDz45LvRaZn55K_n.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/540x540/NB_C2Z9rpYU9Tvht.mp4?tag=21" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/720x720/TXthjPjzCyzNF-Yy.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1372263038", + "indices": [ + 148, + 157 + ], + "name": "Kushal", + "screen_name": "kushalk_" + }, + { + "id_str": "785003430154674176", + "indices": [ + 162, + 173 + ], + "name": "Tyler Lum", + "screen_name": "tylerlum23" + } + ] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/ZA2nnSi76N", + "expanded_url": "https://x.com/SharpaRobotics/status/2047605606421598216/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2047597407219908608", + "indices": [ + 284, + 307 + ], + "media_key": "13_2047597407219908608", + "media_results": { + "result": { + "media_key": "13_2047597407219908608" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2047597407219908608/img/dr1kMEIHmISUIq15.jpg", + "original_info": { + "focus_rects": [], + "height": 720, + "width": 720 + }, + "sizes": { + "large": { + "h": 720, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 720, + "resize": "fit", + "w": 720 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/ZA2nnSi76N", + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 64733, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/pl/z7XlDRAfxR03PzqW.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/320x320/wDz45LvRaZn55K_n.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/540x540/NB_C2Z9rpYU9Tvht.mp4?tag=21" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2047597407219908608/vid/avc1/720x720/TXthjPjzCyzNF-Yy.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 178, + "favorited": false, + "full_text": "It’s been a massive week for embodied AI foundation models: the pace of this field is truly staggering.\nThrowing it back to the SimToolReal work by @kushalk_ and @tylerlum23 (Cornell \u0026amp; Stanford labs). In February, they achieved zero-shot tool manipulation across 24 tasks using a https://t.co/ZA2nnSi76N", + "id_str": "2047605606421598216", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 3, + "retweet_count": 27, + "retweeted": false, + "user_id_str": "1916716208721887232" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1372263038", + "indices": [ + 148, + 157 + ], + "name": "Kushal", + "screen_name": "kushalk_" + }, + { + "id_str": "785003430154674176", + "indices": [ + 162, + 173 + ], + "name": "Tyler Lum", + "screen_name": "tylerlum23" + } + ] + }, + "id": "Tm90ZVR3ZWV0OjIwNDc2MDU2MDYzMzM1MzQyMDg=", + "richtext": { + "richtext_tags": [] + }, + "text": "It’s been a massive week for embodied AI foundation models: the pace of this field is truly staggering.\nThrowing it back to the SimToolReal work by @kushalk_ and @tylerlum23 (Cornell \u0026 Stanford labs). In February, they achieved zero-shot tool manipulation across 24 tasks using a single RL policy and a robotic arm fitted with the SharpaWave hand.\nWatching the robot nail these high-speed in-hand rotations is incredible. The precision is especially impressive when you consider the policy was never trained on these specific objects or tasks. This is what solving the manipulation bottleneck looks like. ⚡️" + } + } + }, + "rest_id": "2047605606421598216", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "150700", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "promoted-tweet-2047605606421598216-6789d242546e7f1f", + "sortIndex": "2048752317548724213" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAMDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "427692253" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1989157446829350912/pW828UwK_normal.jpg" + }, + "core": { + "created_at": "Sun Oct 05 01:50:40 +0000 2025", + "name": "阿绎 AYi", + "screen_name": "AYi_AInotes" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTc0NjUzMzI4Mjc0NzE0NjI0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "大厂组织发展专家 × 心理学硕士 × AI 重度实践者 \n分享有用的 AI 实践,也分享工具之外的深度认知\nAIGC | Prompt Engineering | 商业思维 丨职场✖️心理学\n🐈 和 4 只猫一起生活和工作", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 11190, + "follow_request_sent": false, + "followers_count": 36258, + "friends_count": 504, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 334, + "media_count": 844, + "needs_phone_verification": false, + "normal_followers_count": 36258, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048230556278673428" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1974653328274714624/1765647875", + "profile_interstitial_type": "", + "statuses_count": 9098, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1988150367809667164" + }, + "profile_bio": { + "description": "大厂组织发展专家 × 心理学硕士 × AI 重度实践者 \n分享有用的 AI 实践,也分享工具之外的深度认知\nAIGC | Prompt Engineering | 商业思维 丨职场✖️心理学\n🐈 和 4 只猫一起生活和工作" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1974653328274714624", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048685802058613203" + ], + "editable_until_msecs": "1777283332000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 108, + "bookmarked": false, + "conversation_id_str": "2048685802058613203", + "created_at": "Mon Apr 27 08:48:52 +0000 2026", + "display_text_range": [ + 0, + 74 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2030583048732135424/y0GDtFqJ_normal.jpg" + }, + "core": { + "created_at": "Sun Mar 08 09:51:47 +0000 2026", + "name": "ぞくぞく@個人開発", + "screen_name": "konekone2026" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDMwNTgyMDg2MzM2NDgzMzI4", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "アプリ開発挑戦中!深夜にカチャカチャ\nものづくりアカウント▶@zokuzoku2016", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 1820, + "follow_request_sent": false, + "followers_count": 1388, + "friends_count": 390, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 9, + "media_count": 12, + "needs_phone_verification": false, + "normal_followers_count": 1388, + "notifications": false, + "pinned_tweet_ids_str": [ + "2036780444822515939" + ], + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 246, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "アプリ開発挑戦中!深夜にカチャカチャ\nものづくりアカウント▶@zokuzoku2016" + }, + "profile_description_language": "ja", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2030582086336483328", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + } + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/d546fRnG7d", + "expanded_url": "https://x.com/konekone2026/status/2048215520965709940/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048215448018415617", + "indices": [ + 51, + 74 + ], + "media_key": "13_2048215448018415617", + "media_results": { + "result": { + "media_key": "13_2048215448018415617" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048215448018415617/img/75iUe5jRLBwH_h3w.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1450 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1450 + }, + "medium": { + "h": 894, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 506, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "source_status_id_str": "2048215520965709940", + "source_user_id_str": "2030582086336483328", + "type": "video", + "url": "https://t.co/d546fRnG7d", + "video_info": { + "aspect_ratio": [ + 145, + 108 + ], + "duration_millis": 16556, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/pl/aFWQMtjWiwkCEY50.m3u8?tag=21" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/362x270/Jf8QGCu7Y4kJBD71.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/482x360/cuYwsN5O-0qQ1ENn.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/966x720/J6zVqAcrqKrU1zXI.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/1450x1080/0XsIQglyq_PvbcVD.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2030583048732135424/y0GDtFqJ_normal.jpg" + }, + "core": { + "created_at": "Sun Mar 08 09:51:47 +0000 2026", + "name": "ぞくぞく@個人開発", + "screen_name": "konekone2026" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDMwNTgyMDg2MzM2NDgzMzI4", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "アプリ開発挑戦中!深夜にカチャカチャ\nものづくりアカウント▶@zokuzoku2016", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 1820, + "follow_request_sent": false, + "followers_count": 1388, + "friends_count": 390, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 9, + "media_count": 12, + "needs_phone_verification": false, + "normal_followers_count": 1388, + "notifications": false, + "pinned_tweet_ids_str": [ + "2036780444822515939" + ], + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 246, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "アプリ開発挑戦中!深夜にカチャカチャ\nものづくりアカウント▶@zokuzoku2016" + }, + "profile_description_language": "ja", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2030582086336483328", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + } + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/d546fRnG7d", + "expanded_url": "https://x.com/konekone2026/status/2048215520965709940/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048215448018415617", + "indices": [ + 51, + 74 + ], + "media_key": "13_2048215448018415617", + "media_results": { + "result": { + "media_key": "13_2048215448018415617" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048215448018415617/img/75iUe5jRLBwH_h3w.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1450 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1450 + }, + "medium": { + "h": 894, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 506, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "source_status_id_str": "2048215520965709940", + "source_user_id_str": "2030582086336483328", + "type": "video", + "url": "https://t.co/d546fRnG7d", + "video_info": { + "aspect_ratio": [ + 145, + 108 + ], + "duration_millis": 16556, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/pl/aFWQMtjWiwkCEY50.m3u8?tag=21" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/362x270/Jf8QGCu7Y4kJBD71.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/482x360/cuYwsN5O-0qQ1ENn.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/966x720/J6zVqAcrqKrU1zXI.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048215448018415617/vid/avc1/1450x1080/0XsIQglyq_PvbcVD.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 260, + "favorited": false, + "full_text": "这个日本老哥做的这款应用太酷了,自家的胖猫会出来强制你休息,\n等我研究下给自家的几只猫都安排上哈哈哈 https://t.co/d546fRnG7d", + "id_str": "2048685802058613203", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 21, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "1974653328274714624" + }, + "rest_id": "2048685802058613203", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "35566", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048685802058613203", + "sortIndex": "2048752317548724212" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAANDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "1624552932" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1998060267033493504/shF8thdK_normal.jpg" + }, + "core": { + "created_at": "Tue Jul 25 19:29:49 +0000 2023", + "name": "小M", + "screen_name": "ManPie6135" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNjgzOTIyNDU3NDAzNDgyMTI0", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 0, + "follow_request_sent": false, + "followers_count": 8596, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 9, + "media_count": 94, + "needs_phone_verification": false, + "normal_followers_count": 8596, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 115, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1683922457403482124", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048401257204007352" + ], + "editable_until_msecs": "1777215491000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 925, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "ManPie6135" + } + } + }, + "policy": "Community" + }, + "conversation_id_str": "2048401257204007352", + "created_at": "Sun Apr 26 13:58:11 +0000 2026", + "display_text_range": [ + 0, + 12 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 9, + 12 + ], + "text": "反差" + } + ], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/SMQHAdYrdR", + "expanded_url": "https://x.com/ManPie6135/status/2048401257204007352/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048401108738162688", + "indices": [ + 13, + 36 + ], + "media_key": "13_2048401108738162688", + "media_results": { + "result": { + "media_key": "13_2048401108738162688" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048401108738162688/img/mlnNyfRZqVA6xpO4.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/SMQHAdYrdR", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 26966, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/pl/L95QrKyXkw1tudzp.m3u8?tag=14\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/320x568/Bm_JjHpDFgB6gwwZ.mp4?tag=14" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/480x852/yRZJoZdWjHXsaCuk.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/720x1280/knQDC_oECQOv_Fgn.mp4?tag=14" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/SMQHAdYrdR", + "expanded_url": "https://x.com/ManPie6135/status/2048401257204007352/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048401108738162688", + "indices": [ + 13, + 36 + ], + "media_key": "13_2048401108738162688", + "media_results": { + "result": { + "media_key": "13_2048401108738162688" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048401108738162688/img/mlnNyfRZqVA6xpO4.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/SMQHAdYrdR", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 26966, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/pl/L95QrKyXkw1tudzp.m3u8?tag=14\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/320x568/Bm_JjHpDFgB6gwwZ.mp4?tag=14" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/480x852/yRZJoZdWjHXsaCuk.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048401108738162688/vid/avc1/720x1280/knQDC_oECQOv_Fgn.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 3810, + "favorited": false, + "full_text": "不行,我忍不了了\n#反差 https://t.co/SMQHAdYrdR", + "id_str": "2048401257204007352", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 66, + "retweet_count": 87, + "retweeted": false, + "user_id_str": "1683922457403482124" + }, + "rest_id": "2048401257204007352", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "1032605", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "tweet-2048401257204007352", + "sortIndex": "2048752317548724211" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAODwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-343564732" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1994264359347122177/zhUw-MCd_normal.jpg" + }, + "core": { + "created_at": "Fri Mar 17 17:00:49 +0000 2023", + "name": "JewBiz", + "screen_name": "JewBizLogic" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNjM2Nzc0NDk1OTgwNzUyODk3", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "看透了价值交换,就看透了生活万象。在噪音中保持清醒,做个不入局的操盘手。 所谓命运,不过是认知的变现。", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 737, + "follow_request_sent": false, + "followers_count": 15095, + "friends_count": 1787, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 67, + "media_count": 190, + "needs_phone_verification": false, + "normal_followers_count": 15095, + "notifications": false, + "pinned_tweet_ids_str": [ + "2008379686741594484" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1636774495980752897/1764304652", + "profile_interstitial_type": "", + "statuses_count": 5349, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "看透了价值交换,就看透了生活万象。在噪音中保持清醒,做个不入局的操盘手。 所谓命运,不过是认知的变现。" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1636774495980752897", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048037024616051128" + ], + "editable_until_msecs": "1777128652000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 2061, + "bookmarked": false, + "conversation_id_str": "2048037024616051128", + "created_at": "Sat Apr 25 13:50:52 +0000 2026", + "display_text_range": [ + 0, + 101 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 2120, + "favorited": false, + "full_text": "什么叫洗钱?\n小洗:某个处长家亲戚开了一家洗浴中心,按摩一小时78,由于你非常喜欢洗澡,几乎每天都会在池子里泡一会,所以你办了张黑金卡,充了10w,之后,你还经常邀请你的处长朋友一起来洗,大家都很开心。", + "id_str": "2048037024616051128", + "is_quote_status": false, + "lang": "zh", + "quote_count": 15, + "reply_count": 129, + "retweet_count": 493, + "retweeted": false, + "user_id_str": "1636774495980752897" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDgwMzcwMjQ0MTQ3NzMyNDg=", + "richtext": { + "richtext_tags": [] + }, + "text": "什么叫洗钱?\n小洗:某个处长家亲戚开了一家洗浴中心,按摩一小时78,由于你非常喜欢洗澡,几乎每天都会在池子里泡一会,所以你办了张黑金卡,充了10w,之后,你还经常邀请你的处长朋友一起来洗,大家都很开心。\n\n中洗:某个局长有个孩子,最近正在找工作,听说这孩子能力出众,被举荐到某银行上班。之后,某市开始了一个大型基建项目,政府牵头,开始对外招标,在评标期间,该银行以出色的实力取得该标的。正好公子升职,成为优秀的对公客户经理,而该项目恰好落入公子手中,随后,该项目的其他中标者,例如:工程方,材料方,技术服务方等,但凡有资金需求的,都会来该银行找对应项目负责人申请贷款。整个项目进展非常顺利,当年,这位优秀对公客户经理由于出色的业绩,分行为其奖金200w。\n\n大洗:由于你出色的业务能力,导致你赚了非常多的钱,但这些钱又因为某些原因,很难花出去,于是你买了一个小企业,做外贸的,体量不大,而后,又让你的妻子去国外成立了另一家公司,主要采购一些国内的廉价商品,这不巧了吗,这两家公司恰好形成互补状态,于是他们开始了长期合作,但时间一长,他们发现一家公司过于单调,尤其是在税务方面,这样的操作过于明显,于是为了让企业业务全方位发展,国外的这家公司成立了一个集团,开设不同的分公司,满足集团的多元化发展。于是,他们开启了长期合作,单一年的往来就高达上亿元。\n个人洗:你是一个非常有钱的富商,但最近需要往境外转一笔费用,但由于某些原因,很难直接兑换外汇,于是,你拿着深藏多年的古董字画去国外专业机构拍卖,而你的朋友则以陌生人的身份入场去竞拍,你再找拍托,将价格提高到你满意的位置,然后你再借你朋友的身份拿下,去除佣金后,这部分资金就成为你的合法境外所得。\n\n大众洗:某个缅甸朋友,通过灰黑产赚到了不少钱,这些大额资金来路不明,非常容易被抓到现行。于是他过拆解资金,将100w拆成500笔2000元业务,通过高频率,多层次,多地域的频繁转帐来人工降噪,规避监管风险,最终汇聚到自己手里。\n直播洗:某主播拥有数万粉丝,平日里默默无闻。突然某天,一个集团老总派人联系她,说我们认识你们平台的董事长,最近我们之间有商业合作,我认为你非常有潜力,想打造你成为明日之星,我们可以花钱帮她冲榜,但前提是最后的收益要如数返还我们,当然,如果你做的优秀,我们还会奖励你一部分收益,于是该主播同意,隔月,他的热度暴涨,直播间直冲榜首,但收益却如数奉还,还钱的时候,如果老总开心,还能给点分成,如果老总不开心,那就换下一个幸运宠儿。\n\n直播洗(2):某主播拥有百万粉丝,平日里一呼百应。突然某天,平台派专人联系他,说我们最近有对大主播有专属活动,具体内容是:我们平台会给你发放现金抽奖额度,你需要在一个月内,将50w的抽奖额度必须以抽奖的名义在直播间用掉,用完后还可以向我们继续申请。次月,我们会根据你的抽奖总额返还你千分之几的奖励金,多发多得。随后,主播在数万人的直播间内大肆抽奖,但每次抽奖的奖金均被平台所指定的固定账户抽中,其余由粉丝参与所构成的抽奖金额,平台与主播37分。\n\n游戏洗:你自己通过能力赚到很多钱,但这部分资金来源不被认可,正巧你又非常喜欢玩游戏,于是,你打开某款国际游戏平台,希望通过倒卖游戏道具来将其洗白,尝试两拨过后,你发现中间产生的手续费过高,一来一回将近40%的现金给了平台,你认为这种行为不妥。于是,你又想到,不如自己成立一个游戏工作室,以购买游戏道具,游戏产品,游戏服务等形式来进行消费洗白,这种虚拟产品来源难以追踪,虚拟服务更是难以定性,最后去除中间的人工成本,依旧还是有非常客观的回收。\n\n电影洗:某商业大佬突然多了一部分来历不明的收入,他很想用这笔钱,于是,他找到某导演,用极短的时间,极少的资金,就做出了一部电影,这部电影经过层层审批最终获得上映权,然后大佬再雇人,通过大量虚构电影票为其撑票房,大佬作为合伙人,票房收入去除税收后成为了合法的票房收益。\n明星洗:某商业大佬手里又突然多了一部分来历不明的收入,他很想用这笔钱,先前的电影洗虽然能成功,但由于大额的税收让他感觉回收率不高,于是,他找到某经纪公司,想选一些漂亮的演员。经过一番试探,定好演员后,直接安排编剧和导演去根据这些演员量身定做剧本。最后商量片酬的时候,则选择以阴阳合同的方式签订,表面上的合同是给税务局看的,用于交税,而背面的合同则是双方秘密约定的核心合同,这部分合同就是要求资方支付片酬后,演员按期以其他方式或境外的名义给大佬或第三方返现。\n数字货币洗:某商业大佬手里又又突然多了一部分来历不明的收入,他很想用,但他嫌之前的回款周期过长,于是,他联系到了某知名币商,然后,币商建议让他购入大量USDT,并购买btc或eth,再将其存入混币器的智能合约中,混币器会将你的币与成千上万用户的币混在一起,进行高频,随机的置换,一番翻江倒海后,当你再次提取时,那个部分资金已经无法追溯最初带毒的地址,最后,再去监管比较宽松的地区找otc柜台,完成最后一步置换。\n不良资产洗:某商业大佬手里又又又多了一笔,他还是很想用,但之前的数字货币洗的方式已经被多国禁止,其他方式又不安全,于是,他又找到了一个商业奇才,给他出谋划策。商业奇才建议,最近国家搞化债,不良资产也可以算作资产进行交易,你只需要找一个基本收不回来的死账,以三方的身份再以极低的价格收入,然后,再通过多个虚拟账户伪装成欠款人,将这笔死帐还清。这样一来,原先来历不明的资金就变成了债权回收收益。\n\n慈善洗:商业大佬又又又又有钱了,但他已经身经百战,他突然又想到一个洗钱的好法子。于是,他找到了某慈善基金会或非营利性机构,或慈善组织,以大量匿名受众的方式,像该机构捐赠资金,随后该组织再以采购费,咨询费,服务费等名义,订购大佬或控制的第三方公司的产品,这样一来,钱就变成了合理合法的项目款。\n\n博彩洗:商业大佬这次来到了澳门,拉斯维加斯等大型正规博彩机构,将以非正常资金购买大量“泥码”,然后在胜率接近50%的项目两边同时下注,作为大额对冲,无论输赢,去除机构的抽水外,大部分筹码都会可兑换的现金码,最后再要求赌场将现金汇入某正规银行机构,并出具博彩收入证明,这样就变成了合法的收入来源。\n\n实物洗:商业大佬这次利用非正常资金购买了大量名表,黄金等体积小,但高净值的产品,然后将其携带出境,在监管宽松的地区将其卖给二手商。由于名表,名包都带有出厂的独立编号,非常容易被识别认可,在二级市场极易变现。\n\n农产品洗:商业大佬这次又盯上了农产品,他发现农产品消耗量极大,但价格波动却极高,于是投资了一个农产品批发公司,对外声称从成千上万的农户手中采购了近千万的苹果,但实际上,这批苹果总值不过百万,中间的差额则由赃款填补,随后再将这批苹果卖出。由于农户交易大部分使用现金,对发票的依赖性极低,审计与税务机构很难追溯真实的采购量与采购价格,赃款就能趁机混入其中。\n\n体育洗:商业大佬这次又开了一家联赛级的小俱乐部,以极高的价格买入一名普通球员,在复杂的转会合同中,包含大量的“经纪人佣金”、“签字费”“肖像权许可费”等支付给海外皮包公司的各种费用,然后再经过层层转包,流向了世界各地的关联账户。\n\n专利洗:商业大佬发现知识产权没有公允价值,定价完全靠心情。于是,他注册了一家公司,在海外或者国内注册了大量毫无意义的“实用性专利”,“域名注册”,“软件著作权”或“文学著作权”。然后再用控制着账款的公司,以发展为目的,以天价支付相应的授权费。这样一来账款就变成了技术转让费,而且还能享受国家对科技企业的税收减免与优惠。\n教育洗:商业大佬洗多了发现,越是无形的商品,越适合洗钱。于是,他又盯上了教育服务业。大佬先成立一个教育机构,再雇些专家或名人名仕,开设名为“精英人士领导力培训班”“成功人士的秘诀”等课程,同时开展线下线上双通道讲堂,每节课被标以天价。然后,再以极低的价格雇大量坐堂人士携带身份证来现场充人头数,他们的门票费用则以账款来支付。除此之外,该课还会以录播的形式上架线上课堂,再利用非法渠道获得的身份信息大批量购买,这样一来,线下线上双合璧,使赃款变成了合法的学费收入。反正都是骗人,如果将名人名仕换成一个能吹牛逼的普通人,成本还能更低。\n\n诉讼洗:商业大佬有笔赃款在一家公司,他找到另一个值得信任的朋友,跟他说,你手底下有家公司,我想先和你合作一段时间,然后我故意违约,你再把我告上法庭,起诉我要求支付巨额赔偿金,这样,就能在法院的见证下,将这比赃款以判决执行款的名义成为你的合法收益。然后你再通过其他方式进行资产转移。因为这可是法院认可的收益,没有比这更硬的证明了,所以用起来很方便。\n\n环保洗:商业大佬发现最近的碳排放额度交易非常火爆,他认为其中也有可操作的空间,于是,他找到一些监管尚不成熟的碳排放交易市场,去虚构一批植树造林,光伏发电等碳减排项目,然后再以这类环保公司的名义,去用赃款大量收购大量的碳排放额度,积分,信用等,再去正规的交易平台上流转,因为政策倾斜,所以对这方面的监管往往要宽松,审计阻力也更低。\n\n洗衣机洗:商业大佬在外面忙了一天,回家后很累,脱了外套就睡着了。他醒后发现,外套已经被洗好搭在阳台晾晒了,他一摸口袋,完了,保姆趁他睡着给他把外套带钱一起洗了。这叫洗衣机洗。" + } + } + }, + "rest_id": "2048037024616051128", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "402039", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048037024616051128", + "sortIndex": "2048752317548724210" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAPDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-378511208" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "content_disclosure": { + "advertising_disclosure": { + "is_paid_promotion": true + } + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1765404718959095808/BX7VN1hS_normal.jpg" + }, + "core": { + "created_at": "Tue Mar 05 01:01:23 +0000 2024", + "name": "小互", + "screen_name": "xiaohu" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzY0ODE4MzMxODIyMTgyNDAw", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "带你了解全球最前沿科技、AI动态...\n\n学AI找小互,找小互,上 https://t.co/4PVaHEr5r3 ...\n\n小互AI日报 社群:https://t.co/LIEXfWUHv1", + "entities": { + "description": { + "urls": [ + { + "display_url": "xiaohu.ai", + "expanded_url": "http://xiaohu.ai", + "indices": [ + 34, + 57 + ], + "url": "https://t.co/4PVaHEr5r3" + }, + { + "display_url": "xiaohu.ai/c/xiaohu-ai/xi…", + "expanded_url": "https://www.xiaohu.ai/c/xiaohu-ai/xiaohu-ai-e5aae9", + "indices": [ + 73, + 96 + ], + "url": "https://t.co/LIEXfWUHv1" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "xiaohu.ai", + "expanded_url": "http://xiaohu.ai", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/4PVaHEr5r3" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2199, + "follow_request_sent": false, + "followers_count": 105288, + "friends_count": 1641, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1575, + "media_count": 6169, + "needs_phone_verification": false, + "normal_followers_count": 105288, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1764818331822182400/1717126346", + "profile_interstitial_type": "", + "statuses_count": 9821, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/4PVaHEr5r3", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "Mars" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "带你了解全球最前沿科技、AI动态...\n\n学AI找小互,找小互,上 https://t.co/4PVaHEr5r3 ...\n\n小互AI日报 社群:https://t.co/LIEXfWUHv1" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1764818331822182400", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048626362316214652" + ], + "editable_until_msecs": "1777269161000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 73, + "bookmarked": false, + "conversation_id_str": "2048626362316214652", + "created_at": "Mon Apr 27 04:52:41 +0000 2026", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/PQSSgkKKpt", + "expanded_url": "https://x.com/xiaohu/status/2048626362316214652/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048622321246834688", + "indices": [ + 140, + 163 + ], + "media_key": "13_2048622321246834688", + "media_results": { + "result": { + "media_key": "13_2048622321246834688" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048622321246834688/img/sA8ZJ7iRmJ2N_Fuu.jpg", + "original_info": { + "focus_rects": [], + "height": 2340, + "width": 1080 + }, + "sizes": { + "large": { + "h": 2048, + "resize": "fit", + "w": 945 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 554 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 314 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/PQSSgkKKpt", + "video_info": { + "aspect_ratio": [ + 6, + 13 + ], + "duration_millis": 54000, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/pl/pNVtPIw59oVG3ieP.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/320x692/eMyr-tjX0JOPXjcD.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/480x1040/a35XSmsoZw81Gyno.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/720x1560/Hh7_bSgshQLS7jXJ.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/1080x2340/ZowBr0VpfXutuyGM.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "display_url": "pic.x.com/PQSSgkKKpt", + "expanded_url": "https://x.com/xiaohu/status/2048626362316214652/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048622321246834688", + "indices": [ + 140, + 163 + ], + "media_key": "13_2048622321246834688", + "media_results": { + "result": { + "media_key": "13_2048622321246834688" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048622321246834688/img/sA8ZJ7iRmJ2N_Fuu.jpg", + "original_info": { + "focus_rects": [], + "height": 2340, + "width": 1080 + }, + "sizes": { + "large": { + "h": 2048, + "resize": "fit", + "w": 945 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 554 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 314 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/PQSSgkKKpt", + "video_info": { + "aspect_ratio": [ + 6, + 13 + ], + "duration_millis": 54000, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/pl/pNVtPIw59oVG3ieP.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/320x692/eMyr-tjX0JOPXjcD.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/480x1040/a35XSmsoZw81Gyno.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/720x1560/Hh7_bSgshQLS7jXJ.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048622321246834688/vid/avc1/1080x2340/ZowBr0VpfXutuyGM.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 99, + "favorited": false, + "full_text": "兄弟们手机上现在能跑世界模型了\n\n蚂蚁灵光 App 今天上线\"体验世界模型\"的功能\n\n上传一张图,等个几秒到几十秒,就能生成一个可以拿摇杆走进去的 3D 世界。\n\n手机的算力怎么可能支撑这件事?\n\n应该是云端生成,但是速度这么快,也是牛P,不过效果没有那么惊艳,但是可以玩... https://t.co/PQSSgkKKpt", + "id_str": "2048626362316214652", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 4, + "reply_count": 37, + "retweet_count": 13, + "retweeted": false, + "user_id_str": "1764818331822182400" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDg2MjYzNjIyNTczOTE2MTY=", + "richtext": { + "richtext_tags": [] + }, + "text": "兄弟们手机上现在能跑世界模型了\n\n蚂蚁灵光 App 今天上线\"体验世界模型\"的功能\n\n上传一张图,等个几秒到几十秒,就能生成一个可以拿摇杆走进去的 3D 世界。\n\n手机的算力怎么可能支撑这件事?\n\n应该是云端生成,但是速度这么快,也是牛P,不过效果没有那么惊艳,但是可以玩...\n\n我连测了四张图都进去了..." + } + } + }, + "rest_id": "2048626362316214652", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "29648", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048626362316214652", + "sortIndex": "2048752317548724209" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2003792728019111936/OCj4aUU2_normal.jpg" + }, + "core": { + "created_at": "Sun Dec 10 11:54:59 +0000 2023", + "name": "Kyle McCollum", + "screen_name": "kyle_mcc3" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzMzODE3NDU5MDUwNzQ5OTUy", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Geopolitcs, energy, MENA focused 🌎⚡", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 86, + "follow_request_sent": false, + "followers_count": 373, + "friends_count": 183, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "media_count": 14, + "needs_phone_verification": false, + "normal_followers_count": 373, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 218, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Geopolitcs, energy, MENA focused 🌎⚡" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1733817459050749952", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "21m1ke7jdz247224eqr535fre4" + } + ] + }, + "impressionId": "6789f7182cd66bea", + "impressionString": "6789f7182cd66bea" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "card": { + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=800x419", + "width": 800 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=280x150", + "width": 225 + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Critical minerals are mined all over the world but the majority of the supply ends up passing through China. For a broad range of key metals and minerals, China is either the largest miner, the domina", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.realcleardefense.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=800x320_1", + "width": 480 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=386x202", + "width": 386 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=orig", + "width": 1440 + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1222716350", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=386x202", + "width": 386 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=800x419", + "width": 800 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=100x100", + "width": 100 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=png\u0026name=2048x2048_2_exp", + "width": 1440 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=orig", + "width": 1440 + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "realcleardefense.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=600x314", + "width": 600 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 62.47, + "rgb": { + "blue": 15, + "green": 15, + "red": 16 + } + }, + { + "percentage": 15.4, + "rgb": { + "blue": 163, + "green": 181, + "red": 173 + } + }, + { + "percentage": 7.88, + "rgb": { + "blue": 52, + "green": 74, + "red": 94 + } + }, + { + "percentage": 4.07, + "rgb": { + "blue": 189, + "green": 176, + "red": 79 + } + }, + { + "percentage": 3.98, + "rgb": { + "blue": 101, + "green": 95, + "red": 49 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "How China Dominates the World’s Critical Minerals Production", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 62.47, + "rgb": { + "blue": 15, + "green": 15, + "red": 16 + } + }, + { + "percentage": 15.4, + "rgb": { + "blue": 163, + "green": 181, + "red": 173 + } + }, + { + "percentage": 7.88, + "rgb": { + "blue": 52, + "green": 74, + "red": 94 + } + }, + { + "percentage": 4.07, + "rgb": { + "blue": 189, + "green": 176, + "red": 79 + } + }, + { + "percentage": 3.98, + "rgb": { + "blue": 101, + "green": 95, + "red": 49 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=png\u0026name=2048x2048_2_exp", + "width": 1440 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=600x314", + "width": 600 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 62.47, + "rgb": { + "blue": 15, + "green": 15, + "red": 16 + } + }, + { + "percentage": 15.4, + "rgb": { + "blue": 163, + "green": 181, + "red": 173 + } + }, + { + "percentage": 7.88, + "rgb": { + "blue": 52, + "green": 74, + "red": 94 + } + }, + { + "percentage": 4.07, + "rgb": { + "blue": 189, + "green": 176, + "red": 79 + } + }, + { + "percentage": 3.98, + "rgb": { + "blue": 101, + "green": 95, + "red": 49 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=png\u0026name=2048x2048_2_exp", + "width": 1440 + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/5cxcFwFglF", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 960, + "url": "https://pbs.twimg.com/card_img/2047663095384846337/RPkVa-G8?format=jpg\u0026name=orig", + "width": 1440 + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/5cxcFwFglF", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/892826591214153728/E8hTUpuX_normal.jpg" + }, + "core": { + "created_at": "Tue Feb 26 18:49:43 +0000 2013", + "name": "RealClearDefense", + "screen_name": "RCDefense" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMjIyNzE2MzUw", + "is_blue_verified": true, + "legacy": { + "default_profile": false, + "default_profile_image": false, + "description": "RealClearDefense - Your source for the latest on Defense, National Security, Strategy, and Military Commentary and Analysis.", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "realcleardefense.com", + "expanded_url": "http://realcleardefense.com", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/U1Sw9wZyz5" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1516, + "follow_request_sent": false, + "followers_count": 62549, + "friends_count": 4540, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1617, + "media_count": 29009, + "needs_phone_verification": false, + "normal_followers_count": 62549, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1222716350/1603292869", + "profile_interstitial_type": "", + "statuses_count": 53372, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/U1Sw9wZyz5", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "Washington, D.C." + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "RealClearDefense - Your source for the latest on Defense, National Security, Strategy, and Military Commentary and Analysis." + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1222716350", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + ] + }, + "rest_id": "https://t.co/5cxcFwFglF" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2003792728019111936/OCj4aUU2_normal.jpg" + }, + "core": { + "created_at": "Sun Dec 10 11:54:59 +0000 2023", + "name": "Kyle McCollum", + "screen_name": "kyle_mcc3" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzMzODE3NDU5MDUwNzQ5OTUy", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Geopolitcs, energy, MENA focused 🌎⚡", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 86, + "follow_request_sent": false, + "followers_count": 373, + "friends_count": 183, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "media_count": 14, + "needs_phone_verification": false, + "normal_followers_count": 373, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 218, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Geopolitcs, energy, MENA focused 🌎⚡" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1733817459050749952", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2040081694380736990" + ], + "editable_until_msecs": "1775231953000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 43, + "bookmarked": false, + "conversation_id_str": "2040081694380736990", + "created_at": "Fri Apr 03 14:59:13 +0000 2026", + "display_text_range": [ + 0, + 269 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "realcleardefense.com/articles/2026/…", + "expanded_url": "https://www.realcleardefense.com/articles/2026/04/03/how_china_dominates_the_worlds_critical_minerals_production_1174451.html", + "indices": [ + 246, + 269 + ], + "url": "https://t.co/5cxcFwFglF" + } + ], + "user_mentions": [] + }, + "favorite_count": 122, + "favorited": false, + "full_text": "China doesn’t even need to mine critical minerals to control the choke point. With commodities giants like Mercuria embedded in that system, the West’s supply chain risk runs deeper than it seems.\n\nCheck out my latest piece on RealClearDefense.\n\nhttps://t.co/5cxcFwFglF", + "id_str": "2040081694380736990", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 3, + "retweet_count": 18, + "retweeted": false, + "user_id_str": "1733817459050749952" + }, + "rest_id": "2040081694380736990", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "822357", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "promoted-tweet-2040081694380736990-6789f7182cd66bea", + "sortIndex": "2048752317548724208" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAARDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "950624838" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1982050201272475648/hC0Ax32a_normal.jpg" + }, + "core": { + "created_at": "Mon Aug 11 12:10:57 +0000 2025", + "name": "娇纵大小姐", + "screen_name": "Daxiaojie111" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTU0ODc4MTY3MjQ1ODU2NzY4", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "随便玩玩 碎碎念 日常", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 187, + "follow_request_sent": false, + "followers_count": 20325, + "friends_count": 2, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 20, + "media_count": 79, + "needs_phone_verification": false, + "normal_followers_count": 20325, + "notifications": false, + "pinned_tweet_ids_str": [ + "2042957878512713881" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1954878167245856768/1765634730", + "profile_interstitial_type": "", + "statuses_count": 190, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "随便玩玩 碎碎念 日常" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1954878167245856768", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048405000477450535" + ], + "editable_until_msecs": "1777216384000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "conversation_id_str": "2048405000477450535", + "created_at": "Sun Apr 26 14:13:04 +0000 2026", + "display_text_range": [ + 0, + 32 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 24, + "favorited": false, + "full_text": "我突然发现现在微博的尺度都比推特大,这是怎么了??推特在扫黄吗?", + "id_str": "2048405000477450535", + "is_quote_status": false, + "lang": "zh", + "quote_count": 0, + "reply_count": 98, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1954878167245856768" + }, + "rest_id": "2048405000477450535", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "44506", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048405000477450535", + "sortIndex": "2048752317548724207" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAASDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1538169986" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2004720683905904640/8ZEZs67v_normal.jpg" + }, + "core": { + "created_at": "Wed May 13 12:54:20 +0000 2020", + "name": "李老师不是你老师", + "screen_name": "whyyoutouzhele" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMjYwNTUzOTQxNzE0MTg2MjQx", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "投稿私信\n或:https://t.co/SwoJzv97eA\n邮箱投稿: lilaoshitougao@gmail.com \n你看那通天的巨塔,每时每刻都有人往下跳。我小时候不懂,以为那是雪花\n加入我们的社区 https://t.co/OWEgUHVaqG", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/chinese_dissid…", + "expanded_url": "http://t.me/chinese_dissidents_manager_bot", + "indices": [ + 7, + 30 + ], + "url": "https://t.co/SwoJzv97eA" + }, + { + "display_url": "t.me/whyyoutouzhele…", + "expanded_url": "http://t.me/whyyoutouzhele_memecoin", + "indices": [ + 106, + 129 + ], + "url": "https://t.co/OWEgUHVaqG" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "t.me/lilaoshibushin…", + "expanded_url": "https://t.me/lilaoshibushinilaoshi", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/oYAawk45Un" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 9438, + "follow_request_sent": false, + "followers_count": 2208611, + "friends_count": 1037, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8676, + "media_count": 45852, + "needs_phone_verification": false, + "normal_followers_count": 2208611, + "notifications": false, + "pinned_tweet_ids_str": [ + "2019752134674141562" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1260553941714186241/1650306568", + "profile_interstitial_type": "", + "statuses_count": 52939, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/oYAawk45Un", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "偷乐星球" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1679955392569171972" + }, + "profile_bio": { + "description": "投稿私信\n或:https://t.co/SwoJzv97eA\n邮箱投稿: lilaoshitougao@gmail.com \n你看那通天的巨塔,每时每刻都有人往下跳。我小时候不懂,以为那是雪花\n加入我们的社区 https://t.co/OWEgUHVaqG" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1260553941714186241", + "super_follow_eligible": true, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048613105546969491" + ], + "editable_until_msecs": "1777266000000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 146, + "bookmarked": false, + "conversation_id_str": "2048613105546969491", + "created_at": "Mon Apr 27 04:00:00 +0000 2026", + "display_text_range": [ + 0, + 119 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/pbZYLXRA5y", + "expanded_url": "https://x.com/whyyoutouzhele/status/2048613105546969491/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048309264259887104", + "indices": [ + 120, + 143 + ], + "media_key": "3_2048309264259887104", + "media_results": { + "result": { + "media_key": "3_2048309264259887104" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG0ObGZaMAAHUFy.jpg", + "original_info": { + "focus_rects": [ + { + "h": 605, + "w": 1080, + "x": 0, + "y": 0 + }, + { + "h": 1080, + "w": 1080, + "x": 0, + "y": 0 + }, + { + "h": 1223, + "w": 1073, + "x": 7, + "y": 0 + }, + { + "h": 1223, + "w": 612, + "x": 396, + "y": 0 + }, + { + "h": 1223, + "w": 1080, + "x": 0, + "y": 0 + } + ], + "height": 1223, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1223, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 1060 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 600 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/pbZYLXRA5y" + }, + { + "display_url": "pic.x.com/pbZYLXRA5y", + "expanded_url": "https://x.com/whyyoutouzhele/status/2048613105546969491/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048309270312357888", + "indices": [ + 120, + 143 + ], + "media_key": "3_2048309270312357888", + "media_results": { + "result": { + "media_key": "3_2048309270312357888" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG0Obc8bkAAHCDt.jpg", + "original_info": { + "focus_rects": [ + { + "h": 527, + "w": 941, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 538, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 472, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 269, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 941, + "x": 0, + "y": 0 + } + ], + "height": 538, + "width": 941 + }, + "sizes": { + "large": { + "h": 538, + "resize": "fit", + "w": 941 + }, + "medium": { + "h": 538, + "resize": "fit", + "w": 941 + }, + "small": { + "h": 389, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/pbZYLXRA5y" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/pbZYLXRA5y", + "expanded_url": "https://x.com/whyyoutouzhele/status/2048613105546969491/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048309264259887104", + "indices": [ + 120, + 143 + ], + "media_key": "3_2048309264259887104", + "media_results": { + "result": { + "media_key": "3_2048309264259887104" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG0ObGZaMAAHUFy.jpg", + "original_info": { + "focus_rects": [ + { + "h": 605, + "w": 1080, + "x": 0, + "y": 0 + }, + { + "h": 1080, + "w": 1080, + "x": 0, + "y": 0 + }, + { + "h": 1223, + "w": 1073, + "x": 7, + "y": 0 + }, + { + "h": 1223, + "w": 612, + "x": 396, + "y": 0 + }, + { + "h": 1223, + "w": 1080, + "x": 0, + "y": 0 + } + ], + "height": 1223, + "width": 1080 + }, + "sizes": { + "large": { + "h": 1223, + "resize": "fit", + "w": 1080 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 1060 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 600 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/pbZYLXRA5y" + }, + { + "display_url": "pic.x.com/pbZYLXRA5y", + "expanded_url": "https://x.com/whyyoutouzhele/status/2048613105546969491/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048309270312357888", + "indices": [ + 120, + 143 + ], + "media_key": "3_2048309270312357888", + "media_results": { + "result": { + "media_key": "3_2048309270312357888" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG0Obc8bkAAHCDt.jpg", + "original_info": { + "focus_rects": [ + { + "h": 527, + "w": 941, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 538, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 472, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 269, + "x": 0, + "y": 0 + }, + { + "h": 538, + "w": 941, + "x": 0, + "y": 0 + } + ], + "height": 538, + "width": 941 + }, + "sizes": { + "large": { + "h": 538, + "resize": "fit", + "w": 941 + }, + "medium": { + "h": 538, + "resize": "fit", + "w": 941 + }, + "small": { + "h": 389, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/pbZYLXRA5y" + } + ] + }, + "favorite_count": 829, + "favorited": false, + "full_text": "4月24日,知乎上有人问:本人因为用梯子被警察叫到派出所了,做了一堆笔录,对我以后考公务员有没有什么影响?\n\n一名网友回复:“听说可以挂台湾的VPN卡bug,翻墙,挂国外才叫翻墙。我还在国内转呢”\n\n目前,该问题以及所有回复均被平台删除。 https://t.co/pbZYLXRA5y", + "id_str": "2048613105546969491", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 282, + "retweet_count": 34, + "retweeted": false, + "user_id_str": "1260553941714186241" + }, + "rest_id": "2048613105546969491", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "164937", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048613105546969491", + "sortIndex": "2048752317548724206" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAATDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "2060038958" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2012531606020390912/jU4-9qGu_normal.jpg" + }, + "core": { + "created_at": "Sat Feb 01 00:49:51 +0000 2020", + "name": "我明天不想说话(读研发疯版)", + "screen_name": "wmtbxsh" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMjIzNDA3OTkwNzEzMTE0NjI0", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "我只想安静发疯💢|碎碎念@wjtbxsh|推广自辨❗️", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 5384, + "follow_request_sent": false, + "followers_count": 49457, + "friends_count": 238, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 108, + "media_count": 481, + "needs_phone_verification": false, + "normal_followers_count": 49457, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048681589572538841" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1223407990713114624/1734994703", + "profile_interstitial_type": "", + "statuses_count": 1976, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "我只想安静发疯💢|碎碎念@wjtbxsh|推广自辨❗️" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1223407990713114624", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048074453125579121" + ], + "editable_until_msecs": "1777137575000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 3238, + "bookmarked": false, + "conversation_id_str": "2048074453125579121", + "created_at": "Sat Apr 25 16:19:35 +0000 2026", + "display_text_range": [ + 0, + 68 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 22631, + "favorited": false, + "full_text": "我感觉内射真的好涩(在不会怀孕且安全的前提下)…尤其是我看片和po文也很喜欢看内射的,射出来的精液和小穴流的水混合在一起,就是特别淫乱…", + "id_str": "2048074453125579121", + "is_quote_status": false, + "lang": "zh", + "quote_count": 210, + "reply_count": 1355, + "retweet_count": 1332, + "retweeted": false, + "user_id_str": "1223407990713114624" + }, + "rest_id": "2048074453125579121", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "1228593", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048074453125579121", + "sortIndex": "2048752317548724205" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAUDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "317807509" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1988784050077855748/3UDiE_zW_normal.jpg" + }, + "core": { + "created_at": "Mon Jan 24 14:12:49 +0000 2022", + "name": "likiy", + "screen_name": "likiy13" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNDg1NjE2NTM0OTE1Nzg4ODAz", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "对于我对象来说我就是一只拜金喜欢玉桂狗的小狗皇帝。这里是一个我来自娱自乐的朋友圈 纯图小号:@mlmmily152227", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 242, + "follow_request_sent": false, + "followers_count": 30191, + "friends_count": 86, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 35, + "media_count": 1216, + "needs_phone_verification": false, + "normal_followers_count": 30191, + "notifications": false, + "pinned_tweet_ids_str": [ + "2025998504729182308" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1485616534915788803/1749406209", + "profile_interstitial_type": "", + "statuses_count": 5612, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "对于我对象来说我就是一只拜金喜欢玉桂狗的小狗皇帝。这里是一个我来自娱自乐的朋友圈 纯图小号:@mlmmily152227" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1485616534915788803", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048398966115774555" + ], + "editable_until_msecs": "1777214945000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 242, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "likiy13" + } + } + }, + "policy": "Community" + }, + "conversation_id_str": "2048398966115774555", + "created_at": "Sun Apr 26 13:49:05 +0000 2026", + "display_text_range": [ + 0, + 12 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/jwab5lcFbx", + "expanded_url": "https://x.com/likiy13/status/2048398966115774555/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048398874310742017", + "indices": [ + 13, + 36 + ], + "media_key": "13_2048398874310742017", + "media_results": { + "result": { + "media_key": "13_2048398874310742017" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048398874310742017/img/RXviPYMA1qQ1xPCE.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/jwab5lcFbx", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 38166, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/pl/AxZVWD9A5VHNSdoe.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/320x568/pCPN79NGVqq3v8ik.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/480x852/JeydLlIBfH4VSITp.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/720x1280/LFL8wnSmgkCRS-aq.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/jwab5lcFbx", + "expanded_url": "https://x.com/likiy13/status/2048398966115774555/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048398874310742017", + "indices": [ + 13, + 36 + ], + "media_key": "13_2048398874310742017", + "media_results": { + "result": { + "media_key": "13_2048398874310742017" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048398874310742017/img/RXviPYMA1qQ1xPCE.jpg", + "original_info": { + "focus_rects": [], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/jwab5lcFbx", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 38166, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/pl/AxZVWD9A5VHNSdoe.m3u8?tag=21\u0026v=cfc" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/320x568/pCPN79NGVqq3v8ik.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/480x852/JeydLlIBfH4VSITp.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048398874310742017/vid/avc1/720x1280/LFL8wnSmgkCRS-aq.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 1476, + "favorited": false, + "full_text": "上周三 对象拿我手机录的 https://t.co/jwab5lcFbx", + "id_str": "2048398966115774555", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 10, + "retweet_count": 21, + "retweeted": false, + "user_id_str": "1485616534915788803" + }, + "rest_id": "2048398966115774555", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "159652", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "tweet-2048398966115774555", + "sortIndex": "2048752317548724204" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1249624581071085568/Hl_cdiBS_normal.jpg" + }, + "core": { + "created_at": "Tue Apr 17 17:42:53 +0000 2007", + "name": "CTO Larsson", + "screen_name": "ctoLarsson" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjo1MDIyMjcx", + "is_blue_verified": true, + "legacy": { + "default_profile": false, + "default_profile_image": false, + "description": "#Bitcoin cto.eth \nYouTuber https://t.co/ljhrrYjD3w \nEx @ericsson 2G 3G 4G 5G - 5 billion subs. \nLarsson Line: https://t.co/RF9Nzlzbz2", + "entities": { + "description": { + "urls": [ + { + "display_url": "youtube.com/ctoLarsson", + "expanded_url": "http://youtube.com/ctoLarsson", + "indices": [ + 27, + 50 + ], + "url": "https://t.co/ljhrrYjD3w" + }, + { + "display_url": "ctolarsson.com", + "expanded_url": "https://www.ctolarsson.com", + "indices": [ + 110, + 133 + ], + "url": "https://t.co/RF9Nzlzbz2" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/ctoLarsson", + "expanded_url": "https://youtube.com/ctoLarsson", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/Jkfog0Y8tS" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 27762, + "follow_request_sent": false, + "followers_count": 175544, + "friends_count": 2080, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1270, + "media_count": 3019, + "needs_phone_verification": false, + "normal_followers_count": 175544, + "notifications": false, + "pinned_tweet_ids_str": [ + "2006455926719656310" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5022271/1544165961", + "profile_interstitial_type": "", + "statuses_count": 15907, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/Jkfog0Y8tS", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "#Bitcoin cto.eth \nYouTuber https://t.co/ljhrrYjD3w \nEx @ericsson 2G 3G 4G 5G - 5 billion subs. \nLarsson Line: https://t.co/RF9Nzlzbz2" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "5022271", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "2ybm6pbdjjfb7nit3rej07y9n" + } + ] + }, + "impressionId": "67891665c6fec52d", + "impressionString": "67891665c6fec52d" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "card": { + "legacy": { + "binding_values": [ + { + "key": "unified_card", + "value": { + "string_value": "{\"type\":\"image_carousel_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Get Larsson Line Pro 50% Off\",\"is_rtl\":false},\"subtitle\":{\"content\":\"ctolarsson.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"swipeable_media_1\":{\"type\":\"swipeable_media\",\"data\":{\"media_list\":[{\"id\":\"3_2047577537736269824\",\"destination\":\"browser_1\"},{\"id\":\"3_2047577829991206912\",\"destination\":\"browser_1\"},{\"id\":\"3_2047577913768165376\",\"destination\":\"browser_1\"}]}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.ctolarsson.com/offernav\",\"vanity\":\"ctolarsson.com\"}}}},\"components\":[\"swipeable_media_1\",\"details_1\"],\"media_entities\":{\"3_2047577829991206912\":{\"id\":2047577829991206912,\"id_str\":\"2047577829991206912\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/HGp1MBaXUAAD43w.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":1080,\"height\":1080,\"focus_rects\":[{\"x\":0,\"y\":373,\"h\":605,\"w\":1080},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080},{\"x\":133,\"y\":0,\"h\":1080,\"w\":947},{\"x\":513,\"y\":0,\"h\":1080,\"w\":540},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080}]},\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"source_user_id\":5022271,\"source_user_id_str\":\"5022271\",\"media_key\":\"3_2047577829991206912\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":44,\"green\":56,\"blue\":70},\"percentage\":25.49},{\"rgb\":{\"red\":171,\"green\":196,\"blue\":203},\"percentage\":18.77},{\"rgb\":{\"red\":90,\"green\":129,\"blue\":121},\"percentage\":14.84},{\"rgb\":{\"red\":92,\"green\":63,\"blue\":62},\"percentage\":8.53},{\"rgb\":{\"red\":20,\"green\":60,\"blue\":151},\"percentage\":3.39}]}},\"ttl\":-1}}},\"3_2047577913768165376\":{\"id\":2047577913768165376,\"id_str\":\"2047577913768165376\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/HGp1Q5gWQAAMJWG.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":1080,\"height\":1080,\"focus_rects\":[{\"x\":0,\"y\":475,\"h\":605,\"w\":1080},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080},{\"x\":67,\"y\":0,\"h\":1080,\"w\":947},{\"x\":270,\"y\":0,\"h\":1080,\"w\":540},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080}]},\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":5022271,\"source_user_id_str\":\"5022271\",\"media_key\":\"3_2047577913768165376\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":34,\"green\":34,\"blue\":34},\"percentage\":94.68},{\"rgb\":{\"red\":2,\"green\":137,\"blue\":254},\"percentage\":1.7},{\"rgb\":{\"red\":88,\"green\":82,\"blue\":51},\"percentage\":0.58},{\"rgb\":{\"red\":23,\"green\":67,\"blue\":105},\"percentage\":0.57},{\"rgb\":{\"red\":255,\"green\":214,\"blue\":3},\"percentage\":0.21}]}},\"ttl\":-1}}},\"3_2047577537736269824\":{\"id\":2047577537736269824,\"id_str\":\"2047577537736269824\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/HGp07ArW4AAlhl4.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":1080,\"height\":1080,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":605,\"w\":1080},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080},{\"x\":133,\"y\":0,\"h\":1080,\"w\":947},{\"x\":351,\"y\":0,\"h\":1080,\"w\":540},{\"x\":0,\"y\":0,\"h\":1080,\"w\":1080}]},\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"}},\"source_user_id\":5022271,\"source_user_id_str\":\"5022271\",\"media_key\":\"3_2047577537736269824\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":16,\"green\":26,\"blue\":29},\"percentage\":29.32},{\"rgb\":{\"red\":68,\"green\":68,\"blue\":29},\"percentage\":17.73},{\"rgb\":{\"red\":191,\"green\":222,\"blue\":225},\"percentage\":12.17},{\"rgb\":{\"red\":175,\"green\":145,\"blue\":125},\"percentage\":6.87},{\"rgb\":{\"red\":110,\"green\":99,\"blue\":24},\"percentage\":6.44}]}},\"ttl\":-1}}}}}", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://twitter.com", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "unified_card", + "url": "card://2047585565332160513", + "user_refs_results": [] + }, + "rest_id": "card://2047585565332160513" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1249624581071085568/Hl_cdiBS_normal.jpg" + }, + "core": { + "created_at": "Tue Apr 17 17:42:53 +0000 2007", + "name": "CTO Larsson", + "screen_name": "ctoLarsson" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjo1MDIyMjcx", + "is_blue_verified": true, + "legacy": { + "default_profile": false, + "default_profile_image": false, + "description": "#Bitcoin cto.eth \nYouTuber https://t.co/ljhrrYjD3w \nEx @ericsson 2G 3G 4G 5G - 5 billion subs. \nLarsson Line: https://t.co/RF9Nzlzbz2", + "entities": { + "description": { + "urls": [ + { + "display_url": "youtube.com/ctoLarsson", + "expanded_url": "http://youtube.com/ctoLarsson", + "indices": [ + 27, + 50 + ], + "url": "https://t.co/ljhrrYjD3w" + }, + { + "display_url": "ctolarsson.com", + "expanded_url": "https://www.ctolarsson.com", + "indices": [ + 110, + 133 + ], + "url": "https://t.co/RF9Nzlzbz2" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/ctoLarsson", + "expanded_url": "https://youtube.com/ctoLarsson", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/Jkfog0Y8tS" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 27762, + "follow_request_sent": false, + "followers_count": 175544, + "friends_count": 2080, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1270, + "media_count": 3019, + "needs_phone_verification": false, + "normal_followers_count": 175544, + "notifications": false, + "pinned_tweet_ids_str": [ + "2006455926719656310" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/5022271/1544165961", + "profile_interstitial_type": "", + "statuses_count": 15907, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/Jkfog0Y8tS", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "#Bitcoin cto.eth \nYouTuber https://t.co/ljhrrYjD3w \nEx @ericsson 2G 3G 4G 5G - 5 billion subs. \nLarsson Line: https://t.co/RF9Nzlzbz2" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "5022271", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2047585570130461149" + ], + "editable_until_msecs": "1777021016000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 19, + "bookmarked": false, + "conversation_id_str": "2047585570130461149", + "created_at": "Fri Apr 24 07:56:56 +0000 2026", + "display_text_range": [ + 0, + 260 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 99, + "favorited": false, + "full_text": "It’s easy to draw patterns on a chart.\nHarder to get them right.\n\nNew in Larsson Line Pro 4: automated, accurate pattern detection\nacross 10,000 coins, 100,000 stocks, and commodities.\n\nAnd that’s on top of the all-in-one Larsson Line Pro package. \nNow 50% Off", + "id_str": "2047585570130461149", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 7, + "retweet_count": 4, + "retweeted": false, + "scopes": { + "followers": false + }, + "user_id_str": "5022271" + }, + "rest_id": "2047585570130461149", + "source": "\u003ca href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\"\u003eAds Manager Next\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "1715366", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "promoted-tweet-2047585570130461149-67891665c6fec52d", + "sortIndex": "2048752317548724203" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAWDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1522945741" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "card": { + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=800x419", + "width": 800 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=280x150", + "width": 267 + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Control Codex from your iPhone. Open-source bridge + iOS app with end-to-end encryption.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.phodex.app", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=800x320_1", + "width": 569 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=386x202", + "width": 386 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=orig", + "width": 1920 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=386x202", + "width": 386 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=800x419", + "width": 800 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 81, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=144x144", + "width": 144 + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=png\u0026name=2048x2048_2_exp", + "width": 1920 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=orig", + "width": 1920 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Remodex — Remote Control for Codex", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "phodex.app", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=600x314", + "width": 600 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Remodex — Remote Control for Codex", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 42.65, + "rgb": { + "blue": 245, + "green": 243, + "red": 242 + } + }, + { + "percentage": 41.47, + "rgb": { + "blue": 255, + "green": 118, + "red": 112 + } + }, + { + "percentage": 6.47, + "rgb": { + "blue": 253, + "green": 75, + "red": 60 + } + }, + { + "percentage": 3.73, + "rgb": { + "blue": 107, + "green": 101, + "red": 100 + } + }, + { + "percentage": 2.2, + "rgb": { + "blue": 250, + "green": 139, + "red": 135 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Remodex — Remote Control for Codex", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 42.65, + "rgb": { + "blue": 245, + "green": 243, + "red": 242 + } + }, + { + "percentage": 41.47, + "rgb": { + "blue": 255, + "green": 118, + "red": 112 + } + }, + { + "percentage": 6.47, + "rgb": { + "blue": 253, + "green": 75, + "red": 60 + } + }, + { + "percentage": 3.73, + "rgb": { + "blue": 107, + "green": 101, + "red": 100 + } + }, + { + "percentage": 2.2, + "rgb": { + "blue": 250, + "green": 139, + "red": 135 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=png\u0026name=2048x2048_2_exp", + "width": 1920 + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=600x314", + "width": 600 + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "percentage": 42.65, + "rgb": { + "blue": 245, + "green": 243, + "red": 242 + } + }, + { + "percentage": 41.47, + "rgb": { + "blue": 255, + "green": 118, + "red": 112 + } + }, + { + "percentage": 6.47, + "rgb": { + "blue": 253, + "green": 75, + "red": 60 + } + }, + { + "percentage": 3.73, + "rgb": { + "blue": 107, + "green": 101, + "red": 100 + } + }, + { + "percentage": 2.2, + "rgb": { + "blue": 250, + "green": 139, + "red": 135 + } + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=png\u0026name=2048x2048_2_exp", + "width": 1920 + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/tzaNxoZS3Q", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 1080, + "url": "https://pbs.twimg.com/card_img/2047289683454152704/8wLpSJOc?format=jpg\u0026name=orig", + "width": 1920 + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/tzaNxoZS3Q", + "user_refs_results": [] + }, + "rest_id": "https://t.co/tzaNxoZS3Q" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1786734275355975680/7Bs-ZNct_normal.jpg" + }, + "core": { + "created_at": "Wed Oct 11 16:29:48 +0000 2023", + "name": "Evan Long", + "screen_name": "evanlong_me" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzEyMTQzNDMxMzQxMTU0MzA0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Share products", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "evanlong.me", + "expanded_url": "https://evanlong.me", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/bfmXGoDFZ3" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2911, + "follow_request_sent": false, + "followers_count": 2592, + "friends_count": 169, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 16, + "media_count": 403, + "needs_phone_verification": false, + "normal_followers_count": 2592, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1712143431341154304/1725425733", + "profile_interstitial_type": "", + "statuses_count": 1951, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/bfmXGoDFZ3", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1768638605629800618" + }, + "profile_bio": { + "description": "Share products" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1712143431341154304", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048345123570995240" + ], + "editable_until_msecs": "1777202108000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 319, + "bookmarked": false, + "conversation_id_str": "2048345123570995240", + "created_at": "Sun Apr 26 10:15:08 +0000 2026", + "display_text_range": [ + 0, + 167 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 217, + "favorited": false, + "full_text": "出门在外、Mac 上 OpenAI Codex 还在跑长任务的时候,Remodex 让我可以直接从 iPhone 接管\n\nnpm 装一下、手机扫个二维码就配对完了,之后能看 Codex 在跑什么、随时插话改方向,commit push 切分支这些 git 操作也能在手机上点完。开源,端到端加密,不用注册账号也不走云\n\nMacBook", + "id_str": "2048345123570995240", + "is_quote_status": false, + "lang": "zh", + "quote_count": 2, + "reply_count": 14, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "1712143431341154304" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "urls": [ + { + "display_url": "phodex.app", + "expanded_url": "https://www.phodex.app", + "indices": [ + 180, + 203 + ], + "url": "https://t.co/tzaNxoZS3Q" + } + ], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDgzNDUxMjM0NTM1OTU2NDg=", + "richtext": { + "richtext_tags": [] + }, + "text": "出门在外、Mac 上 OpenAI Codex 还在跑长任务的时候,Remodex 让我可以直接从 iPhone 接管\n\nnpm 装一下、手机扫个二维码就配对完了,之后能看 Codex 在跑什么、随时插话改方向,commit push 切分支这些 git 操作也能在手机上点完。开源,端到端加密,不用注册账号也不走云\n\nMacBook 终于能安静待在桌上了\n\nhttps://t.co/tzaNxoZS3Q" + } + } + }, + "rest_id": "2048345123570995240", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "27332", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048345123570995240", + "sortIndex": "2048752317548724202" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAXDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "842467613" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2047059530891313152/RlbMdB5C_normal.jpg" + }, + "core": { + "created_at": "Tue Mar 31 10:20:23 +0000 2026", + "name": "Ocdlwamh", + "screen_name": "ocdlwamh26049" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDM4OTI0MzMyMTU2NDk3OTIw", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "~分享日常~", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 4, + "follow_request_sent": false, + "followers_count": 445, + "friends_count": 1, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1, + "media_count": 4, + "needs_phone_verification": false, + "normal_followers_count": 445, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 7, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "距离你3.6km" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "~分享日常~" + }, + "profile_description_language": "qst", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2038924332156497920", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048447552006279661" + ], + "editable_until_msecs": "1777226529000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 24, + "bookmarked": false, + "conversation_id_str": "2048447552006279661", + "created_at": "Sun Apr 26 17:02:09 +0000 2026", + "display_text_range": [ + 0, + 81 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/NPhgpenW2y", + "expanded_url": "https://x.com/ocdlwamh26049/status/2048447552006279661/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "medium": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "orig": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "small": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 363, + "y": 1 + } + ] + } + }, + "id_str": "2048447487942557696", + "indices": [ + 82, + 105 + ], + "media_key": "3_2048447487942557696", + "media_results": { + "result": { + "media_key": "3_2048447487942557696" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG2MIxvbgAAHrvT.jpg", + "original_info": { + "focus_rects": [ + { + "h": 573, + "w": 1024, + "x": 0, + "y": 195 + }, + { + "h": 768, + "w": 768, + "x": 153, + "y": 0 + }, + { + "h": 768, + "w": 674, + "x": 200, + "y": 0 + }, + { + "h": 768, + "w": 384, + "x": 345, + "y": 0 + }, + { + "h": 768, + "w": 1024, + "x": 0, + "y": 0 + } + ], + "height": 768, + "width": 1024 + }, + "sizes": { + "large": { + "h": 768, + "resize": "fit", + "w": 1024 + }, + "medium": { + "h": 768, + "resize": "fit", + "w": 1024 + }, + "small": { + "h": 510, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/NPhgpenW2y" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/NPhgpenW2y", + "expanded_url": "https://x.com/ocdlwamh26049/status/2048447552006279661/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 100, + "w": 100, + "x": 505, + "y": 330 + } + ] + }, + "medium": { + "faces": [ + { + "h": 93, + "w": 93, + "x": 473, + "y": 309 + } + ] + }, + "orig": { + "faces": [ + { + "h": 100, + "w": 100, + "x": 505, + "y": 330 + } + ] + }, + "small": { + "faces": [ + { + "h": 53, + "w": 53, + "x": 268, + "y": 175 + } + ] + } + }, + "id_str": "2048447520234459136", + "indices": [ + 82, + 105 + ], + "media_key": "3_2048447520234459136", + "media_results": { + "result": { + "media_key": "3_2048447520234459136" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG2MKqCa0AAVd71.jpg", + "original_info": { + "focus_rects": [ + { + "h": 717, + "w": 1280, + "x": 0, + "y": 0 + }, + { + "h": 720, + "w": 720, + "x": 120, + "y": 0 + }, + { + "h": 720, + "w": 632, + "x": 164, + "y": 0 + }, + { + "h": 720, + "w": 360, + "x": 300, + "y": 0 + }, + { + "h": 720, + "w": 1280, + "x": 0, + "y": 0 + } + ], + "height": 720, + "width": 1280 + }, + "sizes": { + "large": { + "h": 720, + "resize": "fit", + "w": 1280 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/NPhgpenW2y" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/NPhgpenW2y", + "expanded_url": "https://x.com/ocdlwamh26049/status/2048447552006279661/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "medium": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "orig": { + "faces": [ + { + "h": 96, + "w": 96, + "x": 547, + "y": 3 + } + ] + }, + "small": { + "faces": [ + { + "h": 63, + "w": 63, + "x": 363, + "y": 1 + } + ] + } + }, + "id_str": "2048447487942557696", + "indices": [ + 82, + 105 + ], + "media_key": "3_2048447487942557696", + "media_results": { + "result": { + "media_key": "3_2048447487942557696" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG2MIxvbgAAHrvT.jpg", + "original_info": { + "focus_rects": [ + { + "h": 573, + "w": 1024, + "x": 0, + "y": 195 + }, + { + "h": 768, + "w": 768, + "x": 153, + "y": 0 + }, + { + "h": 768, + "w": 674, + "x": 200, + "y": 0 + }, + { + "h": 768, + "w": 384, + "x": 345, + "y": 0 + }, + { + "h": 768, + "w": 1024, + "x": 0, + "y": 0 + } + ], + "height": 768, + "width": 1024 + }, + "sizes": { + "large": { + "h": 768, + "resize": "fit", + "w": 1024 + }, + "medium": { + "h": 768, + "resize": "fit", + "w": 1024 + }, + "small": { + "h": 510, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/NPhgpenW2y" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/NPhgpenW2y", + "expanded_url": "https://x.com/ocdlwamh26049/status/2048447552006279661/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 100, + "w": 100, + "x": 505, + "y": 330 + } + ] + }, + "medium": { + "faces": [ + { + "h": 93, + "w": 93, + "x": 473, + "y": 309 + } + ] + }, + "orig": { + "faces": [ + { + "h": 100, + "w": 100, + "x": 505, + "y": 330 + } + ] + }, + "small": { + "faces": [ + { + "h": 53, + "w": 53, + "x": 268, + "y": 175 + } + ] + } + }, + "id_str": "2048447520234459136", + "indices": [ + 82, + 105 + ], + "media_key": "3_2048447520234459136", + "media_results": { + "result": { + "media_key": "3_2048447520234459136" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG2MKqCa0AAVd71.jpg", + "original_info": { + "focus_rects": [ + { + "h": 717, + "w": 1280, + "x": 0, + "y": 0 + }, + { + "h": 720, + "w": 720, + "x": 120, + "y": 0 + }, + { + "h": 720, + "w": 632, + "x": 164, + "y": 0 + }, + { + "h": 720, + "w": 360, + "x": 300, + "y": 0 + }, + { + "h": 720, + "w": 1280, + "x": 0, + "y": 0 + } + ], + "height": 720, + "width": 1280 + }, + "sizes": { + "large": { + "h": 720, + "resize": "fit", + "w": 1280 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/NPhgpenW2y" + } + ] + }, + "favorite_count": 268, + "favorited": false, + "full_text": "有个问题想问,怎么和比较熟的朋友做上爱?真的蛮想睡的,犹豫好久了要不要开口 但确实关系很正常 很单纯的朋友关系 没有肢体接触 也从没聊过性方面的话题 https://t.co/NPhgpenW2y", + "id_str": "2048447552006279661", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 411, + "retweet_count": 13, + "retweeted": false, + "user_id_str": "2038924332156497920" + }, + "rest_id": "2048447552006279661", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "137734", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048447552006279661", + "sortIndex": "2048752317548724201" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAYDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1906911666" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2040135646103396352/EjXy48q0_normal.jpg" + }, + "core": { + "created_at": "Wed Apr 01 12:46:42 +0000 2026", + "name": "x", + "screen_name": "fhhhggf8799" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyMDM5MzIzMjExMzk4MDMzNDA4", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "t.me/ABER55511", + "expanded_url": "https://t.me/ABER55511", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/ja863rCL2Y" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4, + "follow_request_sent": false, + "followers_count": 4339, + "friends_count": 5, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "media_count": 2, + "needs_phone_verification": false, + "normal_followers_count": 4339, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 2, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/ja863rCL2Y", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "" + }, + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2039323211398033408", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048384800051040528" + ], + "editable_until_msecs": "1777211568000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 4924, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "fhhhggf8799" + } + } + }, + "policy": "ByInvitation" + }, + "conversation_id_str": "2048384800051040528", + "created_at": "Sun Apr 26 12:52:48 +0000 2026", + "display_text_range": [ + 0, + 0 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": false + }, + "display_url": "pic.x.com/Ki4jaescds", + "expanded_url": "https://x.com/fhhhggf8799/status/2048384800051040528/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048384754454552576", + "indices": [ + 0, + 23 + ], + "media_key": "7_2048384754454552576", + "media_results": { + "result": { + "media_key": "7_2048384754454552576" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2048384754454552576/pu/img/OEKJGFs5ZlAo7amR.jpg", + "original_info": { + "focus_rects": [], + "height": 492, + "width": 886 + }, + "sizes": { + "large": { + "h": 492, + "resize": "fit", + "w": 886 + }, + "medium": { + "h": 492, + "resize": "fit", + "w": 886 + }, + "small": { + "h": 378, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/Ki4jaescds", + "video_info": { + "aspect_ratio": [ + 443, + 246 + ], + "duration_millis": 5108, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/pl/ROrFGo9FhGbWg2wp.m3u8?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/486x270/zBHYz2OWwggodvKk.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/648x360/83UEWEapGOig4CAv.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/886x492/jQ-rG9gN9zcZH9Hp.mp4?tag=12" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": false + }, + "display_url": "pic.x.com/Ki4jaescds", + "expanded_url": "https://x.com/fhhhggf8799/status/2048384800051040528/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048384754454552576", + "indices": [ + 0, + 23 + ], + "media_key": "7_2048384754454552576", + "media_results": { + "result": { + "media_key": "7_2048384754454552576" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2048384754454552576/pu/img/OEKJGFs5ZlAo7amR.jpg", + "original_info": { + "focus_rects": [], + "height": 492, + "width": 886 + }, + "sizes": { + "large": { + "h": 492, + "resize": "fit", + "w": 886 + }, + "medium": { + "h": 492, + "resize": "fit", + "w": 886 + }, + "small": { + "h": 378, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/Ki4jaescds", + "video_info": { + "aspect_ratio": [ + 443, + 246 + ], + "duration_millis": 5108, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/pl/ROrFGo9FhGbWg2wp.m3u8?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/486x270/zBHYz2OWwggodvKk.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/648x360/83UEWEapGOig4CAv.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048384754454552576/pu/vid/avc1/886x492/jQ-rG9gN9zcZH9Hp.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 21536, + "favorited": false, + "full_text": "https://t.co/Ki4jaescds", + "id_str": "2048384800051040528", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 17, + "reply_count": 0, + "retweet_count": 496, + "retweeted": false, + "user_id_str": "2039323211398033408" + }, + "rest_id": "2048384800051040528", + "source": "\u003ca href=\"http://twitter.com/download/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "212151", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "tweet-2048384800051040528", + "sortIndex": "2048752317548724200" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAZDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-38933182" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2017874013171920896/CKNBh67K_normal.jpg" + }, + "core": { + "created_at": "Sun Feb 02 20:25:55 +0000 2020", + "name": "作业借你抄", + "screen_name": "chaozuoye" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMjI0MDY2NDAyODc0NjE3ODU2", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "不是KOL ,公众号理财博主(已封)喂饭级博主|\n\n合作TG👉: @chaozuoye|\n\n#OKX 新人首选一站式链上链下交易平台👉https://t.co/mb4fnWzjyB", + "entities": { + "description": { + "urls": [ + { + "display_url": "okx.com/join/ZUOYE", + "expanded_url": "http://okx.com/join/ZUOYE", + "indices": [ + 67, + 90 + ], + "url": "https://t.co/mb4fnWzjyB" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23037, + "follow_request_sent": false, + "followers_count": 58104, + "friends_count": 2141, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 852, + "media_count": 2787, + "needs_phone_verification": false, + "normal_followers_count": 58104, + "notifications": false, + "pinned_tweet_ids_str": [ + "2021956394635997507" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1224066402874617856/1748546529", + "profile_interstitial_type": "", + "statuses_count": 19938, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1486913331545866240" + }, + "profile_bio": { + "description": "不是KOL ,公众号理财博主(已封)喂饭级博主|\n\n合作TG👉: @chaozuoye|\n\n#OKX 新人首选一站式链上链下交易平台👉https://t.co/mb4fnWzjyB" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1224066402874617856", + "super_follow_eligible": true, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048711714288587062" + ], + "editable_until_msecs": "1777289510000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 132, + "bookmarked": false, + "conversation_id_str": "2048711714288587062", + "created_at": "Mon Apr 27 10:31:50 +0000 2026", + "display_text_range": [ + 0, + 147 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/6H5iazf2oe", + "expanded_url": "https://x.com/chaozuoye/status/2048711714288587062/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048711609405825024", + "indices": [ + 148, + 171 + ], + "media_key": "3_2048711609405825024", + "media_results": { + "result": { + "media_key": "3_2048711609405825024" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG58Wq3aYAAThHW.png", + "original_info": { + "focus_rects": [ + { + "h": 239, + "w": 427, + "x": 0, + "y": 60 + }, + { + "h": 427, + "w": 427, + "x": 0, + "y": 0 + }, + { + "h": 487, + "w": 427, + "x": 0, + "y": 0 + }, + { + "h": 797, + "w": 399, + "x": 0, + "y": 0 + }, + { + "h": 797, + "w": 427, + "x": 0, + "y": 0 + } + ], + "height": 797, + "width": 427 + }, + "sizes": { + "large": { + "h": 797, + "resize": "fit", + "w": 427 + }, + "medium": { + "h": 797, + "resize": "fit", + "w": 427 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 364 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/6H5iazf2oe" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/6H5iazf2oe", + "expanded_url": "https://x.com/chaozuoye/status/2048711714288587062/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048711609405825024", + "indices": [ + 148, + 171 + ], + "media_key": "3_2048711609405825024", + "media_results": { + "result": { + "media_key": "3_2048711609405825024" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG58Wq3aYAAThHW.png", + "original_info": { + "focus_rects": [ + { + "h": 239, + "w": 427, + "x": 0, + "y": 60 + }, + { + "h": 427, + "w": 427, + "x": 0, + "y": 0 + }, + { + "h": 487, + "w": 427, + "x": 0, + "y": 0 + }, + { + "h": 797, + "w": 399, + "x": 0, + "y": 0 + }, + { + "h": 797, + "w": 427, + "x": 0, + "y": 0 + } + ], + "height": 797, + "width": 427 + }, + "sizes": { + "large": { + "h": 797, + "resize": "fit", + "w": 427 + }, + "medium": { + "h": 797, + "resize": "fit", + "w": 427 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 364 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/6H5iazf2oe" + } + ] + }, + "favorite_count": 112, + "favorited": false, + "full_text": "很多人都知道美版余额宝年化4%,现在国内余额宝只有1.2%左右\n\n差不多3倍的差距,怎么买?\n\n其实很简单——SGOV,一个 ETF 货币基金,每月派息\n\n底层逻辑是买入美国三个月短期国债,美国财政部每半年付一次利息,平台每天分给持有者\n\n信用由美国财政部担保,跟美元同一个担保人,没有本金风险 https://t.co/6H5iazf2oe", + "id_str": "2048711714288587062", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 11, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "1224066402874617856" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDg3MTE3MTQyMTczMjA0NDg=", + "richtext": { + "richtext_tags": [] + }, + "text": "很多人都知道美版余额宝年化4%,现在国内余额宝只有1.2%左右\n\n差不多3倍的差距,怎么买?\n\n其实很简单——SGOV,一个 ETF 货币基金,每月派息\n\n底层逻辑是买入美国三个月短期国债,美国财政部每半年付一次利息,平台每天分给持有者\n\n信用由美国财政部担保,跟美元同一个担保人,没有本金风险\n\n门槛极低:最少 5 美元起买,约 35 块人民币\n\n零佣金券商基本都能直接买,随时买随时卖,结算很快\n\n跟国内定期存款比,年化都是4%左右,但自由度完全不在一个量级\n\n定期锁死动不了,SGOV 随存随取,利息照算\n\n对家庭闲置资金来说,这是个性价比很高的去处\n\n不过买美股需要美国或香港券商账户,自己评估一下开户成本和资金跨境的便利性" + } + } + }, + "rest_id": "2048711714288587062", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "29608", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048711714288587062", + "sortIndex": "2048752317548724199" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1938440857088364545/5dOHHvL3_normal.jpg" + }, + "core": { + "created_at": "Mon Oct 23 07:43:11 +0000 2023", + "name": "PixVerse", + "screen_name": "PixVerse_" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzE2MzU5NTcyODk2ODU4MTEy", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Unleash your creativity.\nDiscord: https://t.co/yZJR1jG3LR\nApp: https://t.co/fvRtKHqxcL\nAPI: https://t.co/JjhmEA3xPp", + "entities": { + "description": { + "urls": [ + { + "display_url": "discord.gg/4HdAsXGZSW", + "expanded_url": "https://discord.gg/4HdAsXGZSW", + "indices": [ + 34, + 57 + ], + "url": "https://t.co/yZJR1jG3LR" + }, + { + "display_url": "app.pixverse.ai/app-download", + "expanded_url": "http://app.pixverse.ai/app-download", + "indices": [ + 63, + 86 + ], + "url": "https://t.co/fvRtKHqxcL" + }, + { + "display_url": "platform.pixverse.ai", + "expanded_url": "http://platform.pixverse.ai", + "indices": [ + 92, + 115 + ], + "url": "https://t.co/JjhmEA3xPp" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "app.pixverse.ai", + "expanded_url": "https://app.pixverse.ai/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/cXBueSHa3V" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12980, + "follow_request_sent": false, + "followers_count": 27343, + "friends_count": 389, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 280, + "media_count": 826, + "needs_phone_verification": false, + "normal_followers_count": 27343, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048739013503111380" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1716359572896858112/1716863190", + "profile_interstitial_type": "", + "statuses_count": 3571, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/cXBueSHa3V", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Unleash your creativity.\nDiscord: https://t.co/yZJR1jG3LR\nApp: https://t.co/fvRtKHqxcL\nAPI: https://t.co/JjhmEA3xPp" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1716359572896858112", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "2dygoz0megugvudf6aiejr59uk" + } + ] + }, + "impressionId": "6789c36e64dd8a9d", + "impressionString": "6789c36e64dd8a9d" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1938440857088364545/5dOHHvL3_normal.jpg" + }, + "core": { + "created_at": "Mon Oct 23 07:43:11 +0000 2023", + "name": "PixVerse", + "screen_name": "PixVerse_" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNzE2MzU5NTcyODk2ODU4MTEy", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Unleash your creativity.\nDiscord: https://t.co/yZJR1jG3LR\nApp: https://t.co/fvRtKHqxcL\nAPI: https://t.co/JjhmEA3xPp", + "entities": { + "description": { + "urls": [ + { + "display_url": "discord.gg/4HdAsXGZSW", + "expanded_url": "https://discord.gg/4HdAsXGZSW", + "indices": [ + 34, + 57 + ], + "url": "https://t.co/yZJR1jG3LR" + }, + { + "display_url": "app.pixverse.ai/app-download", + "expanded_url": "http://app.pixverse.ai/app-download", + "indices": [ + 63, + 86 + ], + "url": "https://t.co/fvRtKHqxcL" + }, + { + "display_url": "platform.pixverse.ai", + "expanded_url": "http://platform.pixverse.ai", + "indices": [ + 92, + 115 + ], + "url": "https://t.co/JjhmEA3xPp" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "app.pixverse.ai", + "expanded_url": "https://app.pixverse.ai/", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/cXBueSHa3V" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12980, + "follow_request_sent": false, + "followers_count": 27343, + "friends_count": 389, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 280, + "media_count": 826, + "needs_phone_verification": false, + "normal_followers_count": 27343, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048739013503111380" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1716359572896858112/1716863190", + "profile_interstitial_type": "", + "statuses_count": 3571, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/cXBueSHa3V", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Unleash your creativity.\nDiscord: https://t.co/yZJR1jG3LR\nApp: https://t.co/fvRtKHqxcL\nAPI: https://t.co/JjhmEA3xPp" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1716359572896858112", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048739013503111380" + ], + "editable_until_msecs": "1777296019000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": {}, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 6, + "bookmarked": false, + "conversation_id_str": "2048739013503111380", + "created_at": "Mon Apr 27 12:20:19 +0000 2026", + "display_text_range": [ + 0, + 208 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/GvKlQsOY2D", + "expanded_url": "https://x.com/PixVerse_/status/2048739013503111380/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048738682035896320", + "indices": [ + 209, + 232 + ], + "media_key": "13_2048738682035896320", + "media_results": { + "result": { + "media_key": "13_2048738682035896320" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048738682035896320/img/vEiOcMZ1RzNQ6MRa.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1920 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1920 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/GvKlQsOY2D", + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 15207, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/pl/fjjU-CmJfiR3zVzv.m3u8?tag=21\u0026v=22d" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/480x270/J76G0nXaFxBhkpp4.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/640x360/dE_cnqMB69OJpJnB.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/1280x720/A7zSTY2MPbm9ROs_.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/1920x1080/EgQl343JlzIoC0lt.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/GvKlQsOY2D", + "expanded_url": "https://x.com/PixVerse_/status/2048739013503111380/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048738682035896320", + "indices": [ + 209, + 232 + ], + "media_key": "13_2048738682035896320", + "media_results": { + "result": { + "media_key": "13_2048738682035896320" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048738682035896320/img/vEiOcMZ1RzNQ6MRa.jpg", + "original_info": { + "focus_rects": [], + "height": 1080, + "width": 1920 + }, + "sizes": { + "large": { + "h": 1080, + "resize": "fit", + "w": 1920 + }, + "medium": { + "h": 675, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 383, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/GvKlQsOY2D", + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 15207, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/pl/fjjU-CmJfiR3zVzv.m3u8?tag=21\u0026v=22d" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/480x270/J76G0nXaFxBhkpp4.mp4?tag=21" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/640x360/dE_cnqMB69OJpJnB.mp4?tag=21" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/1280x720/A7zSTY2MPbm9ROs_.mp4?tag=21" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048738682035896320/vid/avc1/1920x1080/EgQl343JlzIoC0lt.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 70, + "favorited": false, + "full_text": "The gate is open. Happy Horse is live on PixVerse.\nT2V + I2V, up to 1080P, up to 15s.\nAll HappyHorse generations get an extra 50% OFF discount until May 6. Ultra stacks too.\nRT+Follow+Reply=300Creds(48H ONLY) https://t.co/GvKlQsOY2D", + "id_str": "2048739013503111380", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 33, + "retweet_count": 41, + "retweeted": false, + "user_id_str": "1716359572896858112" + }, + "rest_id": "2048739013503111380", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "31938", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "promoted-tweet-2048739013503111380-6789c36e64dd8a9d", + "sortIndex": "2048752317548724198" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAbDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-204301959" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": { + "label": { + "badge": { + "url": "https://pbs.twimg.com/profile_images/2005963922587934725/gFXx1NAu_bigger.jpg" + }, + "description": "GMGN.Ai", + "url": { + "url": "https://twitter.com/gmgnai", + "urlType": "DeepLink" + }, + "userLabelDisplayType": "Badge", + "userLabelType": "BusinessLabel" + } + }, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1865810235010732033/g4eiMWK3_normal.jpg" + }, + "core": { + "created_at": "Thu Oct 10 15:26:28 +0000 2024", + "name": "区块链行情研究", + "screen_name": "qkl2058" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODQ0Mzk5MDUzNzgzODY3Mzky", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "PolyMarket官方注册链接:https://t.co/HnVzmDCauw 预测市场最快的跟单平台PolyCop:https://t.co/EgT16k3fC5 加入我的PolyMarket电报群:https://t.co/3l2msgVb3c", + "entities": { + "description": { + "urls": [ + { + "display_url": "polymarket.com/zh/?r=PM888", + "expanded_url": "https://polymarket.com/zh/?r=PM888", + "indices": [ + 17, + 40 + ], + "url": "https://t.co/HnVzmDCauw" + }, + { + "display_url": "t.me/PolyCop_BOT?st…", + "expanded_url": "https://t.me/PolyCop_BOT?start=ref_YINGGE888", + "indices": [ + 60, + 83 + ], + "url": "https://t.co/EgT16k3fC5" + }, + { + "display_url": "t.me/PM13168", + "expanded_url": "https://t.me/PM13168", + "indices": [ + 102, + 125 + ], + "url": "https://t.co/3l2msgVb3c" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "990n.acvk.shop/ok168", + "expanded_url": "https://990n.acvk.shop/ok168", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/NlgBJ8MqHc" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 40972, + "follow_request_sent": false, + "followers_count": 62553, + "friends_count": 3409, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 210, + "media_count": 27720, + "needs_phone_verification": false, + "normal_followers_count": 62553, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048091522764259613" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1844399053783867392/1733679199", + "profile_interstitial_type": "", + "statuses_count": 68531, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/NlgBJ8MqHc", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "币圈你需要的全部工具👉" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1852226275177541922" + }, + "profile_bio": { + "description": "PolyMarket官方注册链接:https://t.co/HnVzmDCauw 预测市场最快的跟单平台PolyCop:https://t.co/EgT16k3fC5 加入我的PolyMarket电报群:https://t.co/3l2msgVb3c" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1844399053783867392", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048690043229962701" + ], + "editable_until_msecs": "1777284343000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 39, + "bookmarked": false, + "conversation_id_str": "2048690043229962701", + "created_at": "Mon Apr 27 09:05:43 +0000 2026", + "display_text_range": [ + 0, + 129 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/v1sKP2CDG4", + "expanded_url": "https://x.com/qkl2058/status/2048690043229962701/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "medium": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "orig": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "small": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + } + }, + "id_str": "2048690034430316544", + "indices": [ + 130, + 153 + ], + "media_key": "3_2048690034430316544", + "media_results": { + "result": { + "media_key": "3_2048690034430316544" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ou10aEAArdc6.jpg", + "original_info": { + "focus_rects": [ + { + "h": 333, + "w": 594, + "x": 0, + "y": 224 + }, + { + "h": 594, + "w": 594, + "x": 0, + "y": 85 + }, + { + "h": 677, + "w": 594, + "x": 0, + "y": 2 + }, + { + "h": 679, + "w": 340, + "x": 0, + "y": 0 + }, + { + "h": 679, + "w": 594, + "x": 0, + "y": 0 + } + ], + "height": 679, + "width": 594 + }, + "sizes": { + "large": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "medium": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "small": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/v1sKP2CDG4" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/v1sKP2CDG4", + "expanded_url": "https://x.com/qkl2058/status/2048690043229962701/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "medium": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "orig": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "small": { + "faces": [ + { + "h": 43, + "w": 43, + "x": 359, + "y": 336 + }, + { + "h": 131, + "w": 131, + "x": 160, + "y": 33 + } + ] + } + }, + "id_str": "2048690034434580480", + "indices": [ + 130, + 153 + ], + "media_key": "3_2048690034434580480", + "media_results": { + "result": { + "media_key": "3_2048690034434580480" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ou11bIAAAeep.jpg", + "original_info": { + "focus_rects": [ + { + "h": 381, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 680, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 775, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 784, + "w": 392, + "x": 0, + "y": 0 + }, + { + "h": 784, + "w": 680, + "x": 0, + "y": 0 + } + ], + "height": 784, + "width": 680 + }, + "sizes": { + "large": { + "h": 784, + "resize": "fit", + "w": 680 + }, + "medium": { + "h": 784, + "resize": "fit", + "w": 680 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 590 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/v1sKP2CDG4" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/v1sKP2CDG4", + "expanded_url": "https://x.com/qkl2058/status/2048690043229962701/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "medium": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "orig": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + }, + "small": { + "faces": [ + { + "h": 41, + "w": 41, + "x": 278, + "y": 622 + }, + { + "h": 230, + "w": 230, + "x": 183, + "y": 89 + } + ] + } + }, + "id_str": "2048690034430316544", + "indices": [ + 130, + 153 + ], + "media_key": "3_2048690034430316544", + "media_results": { + "result": { + "media_key": "3_2048690034430316544" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ou10aEAArdc6.jpg", + "original_info": { + "focus_rects": [ + { + "h": 333, + "w": 594, + "x": 0, + "y": 224 + }, + { + "h": 594, + "w": 594, + "x": 0, + "y": 85 + }, + { + "h": 677, + "w": 594, + "x": 0, + "y": 2 + }, + { + "h": 679, + "w": 340, + "x": 0, + "y": 0 + }, + { + "h": 679, + "w": 594, + "x": 0, + "y": 0 + } + ], + "height": 679, + "width": 594 + }, + "sizes": { + "large": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "medium": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "small": { + "h": 679, + "resize": "fit", + "w": 594 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/v1sKP2CDG4" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/v1sKP2CDG4", + "expanded_url": "https://x.com/qkl2058/status/2048690043229962701/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "medium": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "orig": { + "faces": [ + { + "h": 50, + "w": 50, + "x": 414, + "y": 388 + }, + { + "h": 152, + "w": 152, + "x": 185, + "y": 39 + } + ] + }, + "small": { + "faces": [ + { + "h": 43, + "w": 43, + "x": 359, + "y": 336 + }, + { + "h": 131, + "w": 131, + "x": 160, + "y": 33 + } + ] + } + }, + "id_str": "2048690034434580480", + "indices": [ + 130, + 153 + ], + "media_key": "3_2048690034434580480", + "media_results": { + "result": { + "media_key": "3_2048690034434580480" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ou11bIAAAeep.jpg", + "original_info": { + "focus_rects": [ + { + "h": 381, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 680, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 775, + "w": 680, + "x": 0, + "y": 0 + }, + { + "h": 784, + "w": 392, + "x": 0, + "y": 0 + }, + { + "h": 784, + "w": 680, + "x": 0, + "y": 0 + } + ], + "height": 784, + "width": 680 + }, + "sizes": { + "large": { + "h": 784, + "resize": "fit", + "w": 680 + }, + "medium": { + "h": 784, + "resize": "fit", + "w": 680 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 590 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/v1sKP2CDG4" + } + ] + }, + "favorite_count": 41, + "favorited": false, + "full_text": "一个23岁的小伙子,没正经拿过数学学位,周一下午觉得无聊,随手打开了ChatGPT。\n\n80分钟后,一道60年没人解开的数学难题,被他搞定了。\n\n这个问题,全世界顶尖数学家前前后后折腾了几十年,全折在上面。他用的工具,月费二十美元。付出的努力,就一个提示词。 https://t.co/v1sKP2CDG4", + "id_str": "2048690043229962701", + "is_quote_status": true, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "quoted_status_id_str": "2048689816548851917", + "quoted_status_permalink": { + "display": "x.com/qkl2058/status…", + "expanded": "https://twitter.com/qkl2058/status/2048689816548851917", + "url": "https://t.co/Sl4GgeAvMK" + }, + "reply_count": 2, + "retweet_count": 7, + "retweeted": false, + "user_id_str": "1844399053783867392" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDg2OTAwNDMxNzEyNDE5ODQ=", + "text": "一个23岁的小伙子,没正经拿过数学学位,周一下午觉得无聊,随手打开了ChatGPT。\n\n80分钟后,一道60年没人解开的数学难题,被他搞定了。\n\n这个问题,全世界顶尖数学家前前后后折腾了几十年,全折在上面。他用的工具,月费二十美元。付出的努力,就一个提示词。\n\n最离谱的地方在于,AI用的那个方法,圈子里人人都知道,但就是从来没谁想过往这道题上套。\n\n陶哲轩——当今在世最厉害的数学家——是这么评价的:“这不光是解了一道题,它的贡献远远超出了问题本身。”\n\n接下来会发生什么,我们其实还没真正准备好。" + } + } + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": { + "label": { + "badge": { + "url": "https://pbs.twimg.com/profile_images/2005963922587934725/gFXx1NAu_bigger.jpg" + }, + "description": "GMGN.Ai", + "url": { + "url": "https://twitter.com/gmgnai", + "urlType": "DeepLink" + }, + "userLabelDisplayType": "Badge", + "userLabelType": "BusinessLabel" + } + }, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1865810235010732033/g4eiMWK3_normal.jpg" + }, + "core": { + "created_at": "Thu Oct 10 15:26:28 +0000 2024", + "name": "区块链行情研究", + "screen_name": "qkl2058" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODQ0Mzk5MDUzNzgzODY3Mzky", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "PolyMarket官方注册链接:https://t.co/HnVzmDCauw 预测市场最快的跟单平台PolyCop:https://t.co/EgT16k3fC5 加入我的PolyMarket电报群:https://t.co/3l2msgVb3c", + "entities": { + "description": { + "urls": [ + { + "display_url": "polymarket.com/zh/?r=PM888", + "expanded_url": "https://polymarket.com/zh/?r=PM888", + "indices": [ + 17, + 40 + ], + "url": "https://t.co/HnVzmDCauw" + }, + { + "display_url": "t.me/PolyCop_BOT?st…", + "expanded_url": "https://t.me/PolyCop_BOT?start=ref_YINGGE888", + "indices": [ + 60, + 83 + ], + "url": "https://t.co/EgT16k3fC5" + }, + { + "display_url": "t.me/PM13168", + "expanded_url": "https://t.me/PM13168", + "indices": [ + 102, + 125 + ], + "url": "https://t.co/3l2msgVb3c" + } + ] + }, + "url": { + "urls": [ + { + "display_url": "990n.acvk.shop/ok168", + "expanded_url": "https://990n.acvk.shop/ok168", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/NlgBJ8MqHc" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 40972, + "follow_request_sent": false, + "followers_count": 62553, + "friends_count": 3409, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 210, + "media_count": 27720, + "needs_phone_verification": false, + "normal_followers_count": 62553, + "notifications": false, + "pinned_tweet_ids_str": [ + "2048091522764259613" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1844399053783867392/1733679199", + "profile_interstitial_type": "", + "statuses_count": 68531, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/NlgBJ8MqHc", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "币圈你需要的全部工具👉" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "1852226275177541922" + }, + "profile_bio": { + "description": "PolyMarket官方注册链接:https://t.co/HnVzmDCauw 预测市场最快的跟单平台PolyCop:https://t.co/EgT16k3fC5 加入我的PolyMarket电报群:https://t.co/3l2msgVb3c" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1844399053783867392", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048689816548851917" + ], + "editable_until_msecs": "1777284289000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "conversation_id_str": "2048689816548851917", + "created_at": "Mon Apr 27 09:04:49 +0000 2026", + "display_text_range": [ + 0, + 166 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hPAXeuaF2w", + "expanded_url": "https://x.com/qkl2058/status/2048689816548851917/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048689806906195968", + "indices": [ + 167, + 190 + ], + "media_key": "3_2048689806906195968", + "media_results": { + "result": { + "media_key": "3_2048689806906195968" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ohmObgAAKiYz.jpg", + "original_info": { + "focus_rects": [ + { + "h": 699, + "w": 1248, + "x": 0, + "y": 0 + }, + { + "h": 910, + "w": 910, + "x": 75, + "y": 0 + }, + { + "h": 910, + "w": 798, + "x": 131, + "y": 0 + }, + { + "h": 910, + "w": 455, + "x": 303, + "y": 0 + }, + { + "h": 910, + "w": 1248, + "x": 0, + "y": 0 + } + ], + "height": 910, + "width": 1248 + }, + "sizes": { + "large": { + "h": 910, + "resize": "fit", + "w": 1248 + }, + "medium": { + "h": 875, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 496, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hPAXeuaF2w" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hPAXeuaF2w", + "expanded_url": "https://x.com/qkl2058/status/2048689816548851917/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048689806906195968", + "indices": [ + 167, + 190 + ], + "media_key": "3_2048689806906195968", + "media_results": { + "result": { + "media_key": "3_2048689806906195968" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5ohmObgAAKiYz.jpg", + "original_info": { + "focus_rects": [ + { + "h": 699, + "w": 1248, + "x": 0, + "y": 0 + }, + { + "h": 910, + "w": 910, + "x": 75, + "y": 0 + }, + { + "h": 910, + "w": 798, + "x": 131, + "y": 0 + }, + { + "h": 910, + "w": 455, + "x": 303, + "y": 0 + }, + { + "h": 910, + "w": 1248, + "x": 0, + "y": 0 + } + ], + "height": 910, + "width": 1248 + }, + "sizes": { + "large": { + "h": 910, + "resize": "fit", + "w": 1248 + }, + "medium": { + "h": 875, + "resize": "fit", + "w": 1200 + }, + "small": { + "h": 496, + "resize": "fit", + "w": 680 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hPAXeuaF2w" + } + ] + }, + "favorite_count": 11, + "favorited": false, + "full_text": "一个 23 岁的小伙子,拿 ChatGPT 5.4 Pro 把一道 60 年没人解出来的 Erdős 问题给破了。\n\n而且是一发入魂,一次就成。ChatGPT 花了 1 小时 20 分钟跑出答案。\n\n最有意思的是,解题用到的那个公式,圈内人都知道,但从来没人想过能套在这道题上。\n\n想看完整过程的,我把问题和对话记录放第二条帖子了。 https://t.co/hPAXeuaF2w", + "id_str": "2048689816548851917", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 1, + "retweet_count": 2, + "retweeted": false, + "user_id_str": "1844399053783867392" + }, + "rest_id": "2048689816548851917", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "24030", + "state": "EnabledWithCount" + } + } + }, + "rest_id": "2048690043229962701", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "20079", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048690043229962701", + "sortIndex": "2048752317548724197" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAcDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "1016912913" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2046072820095176704/QBve47KI_normal.jpg" + }, + "core": { + "created_at": "Wed Nov 05 15:09:51 +0000 2025", + "name": "小小东", + "screen_name": "xiaoxiaodong01" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTg2MDg3NDM4NzIxNDQ5OTg0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "国际,不知名,顶级图片提示词专家\n月亮岛边上的AI爱好者\n遇事不决 可问东风", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 87, + "follow_request_sent": false, + "followers_count": 4623, + "friends_count": 1178, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 35, + "media_count": 169, + "needs_phone_verification": false, + "normal_followers_count": 4623, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1986087438721449984/1776952560", + "profile_interstitial_type": "", + "statuses_count": 1670, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "国际,不知名,顶级图片提示词专家\n月亮岛边上的AI爱好者\n遇事不决 可问东风" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1986087438721449984", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_control_initial": { + "edit_tweet_ids": [ + "2048274666889064911", + "2048274722434011226", + "2048275851045994847" + ], + "editable_until_msecs": "1777185310000", + "edits_remaining": "3", + "is_edit_eligible": true + }, + "initial_tweet_id": "2048274666889064911" + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 616, + "bookmarked": false, + "conversation_id_str": "2048275851045994847", + "created_at": "Sun Apr 26 05:39:52 +0000 2026", + "display_text_range": [ + 0, + 134 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/UosklmGNkd", + "expanded_url": "https://x.com/xiaoxiaodong01/status/2048275851045994847/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "medium": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "orig": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "small": { + "faces": [ + { + "h": 40, + "w": 40, + "x": 160, + "y": 242 + }, + { + "h": 40, + "w": 40, + "x": 305, + "y": 241 + }, + { + "h": 40, + "w": 40, + "x": 90, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 232, + "y": 392 + }, + { + "h": 41, + "w": 41, + "x": 17, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 305, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 232, + "y": 241 + }, + { + "h": 44, + "w": 44, + "x": 17, + "y": 240 + }, + { + "h": 43, + "w": 43, + "x": 88, + "y": 240 + }, + { + "h": 42, + "w": 42, + "x": 159, + "y": 392 + }, + { + "h": 77, + "w": 77, + "x": 58, + "y": 83 + } + ] + } + }, + "id_str": "2048274658706010112", + "indices": [ + 135, + 158 + ], + "media_key": "3_2048274658706010112", + "media_results": { + "result": { + "media_key": "3_2048274658706010112" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGzu8yqbMAATw1q.jpg", + "original_info": { + "focus_rects": [ + { + "h": 374, + "w": 667, + "x": 0, + "y": 562 + }, + { + "h": 667, + "w": 667, + "x": 0, + "y": 416 + }, + { + "h": 760, + "w": 667, + "x": 0, + "y": 369 + }, + { + "h": 1200, + "w": 600, + "x": 0, + "y": 0 + }, + { + "h": 1200, + "w": 667, + "x": 0, + "y": 0 + } + ], + "height": 1200, + "width": 667 + }, + "sizes": { + "large": { + "h": 1200, + "resize": "fit", + "w": 667 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 667 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 378 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/UosklmGNkd" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/UosklmGNkd", + "expanded_url": "https://x.com/xiaoxiaodong01/status/2048275851045994847/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "medium": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "orig": { + "faces": [ + { + "h": 72, + "w": 72, + "x": 283, + "y": 428 + }, + { + "h": 71, + "w": 71, + "x": 539, + "y": 427 + }, + { + "h": 71, + "w": 71, + "x": 159, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 410, + "y": 692 + }, + { + "h": 73, + "w": 73, + "x": 31, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 539, + "y": 693 + }, + { + "h": 72, + "w": 72, + "x": 411, + "y": 426 + }, + { + "h": 78, + "w": 78, + "x": 31, + "y": 424 + }, + { + "h": 76, + "w": 76, + "x": 157, + "y": 424 + }, + { + "h": 75, + "w": 75, + "x": 282, + "y": 692 + }, + { + "h": 137, + "w": 137, + "x": 103, + "y": 148 + } + ] + }, + "small": { + "faces": [ + { + "h": 40, + "w": 40, + "x": 160, + "y": 242 + }, + { + "h": 40, + "w": 40, + "x": 305, + "y": 241 + }, + { + "h": 40, + "w": 40, + "x": 90, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 232, + "y": 392 + }, + { + "h": 41, + "w": 41, + "x": 17, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 305, + "y": 392 + }, + { + "h": 40, + "w": 40, + "x": 232, + "y": 241 + }, + { + "h": 44, + "w": 44, + "x": 17, + "y": 240 + }, + { + "h": 43, + "w": 43, + "x": 88, + "y": 240 + }, + { + "h": 42, + "w": 42, + "x": 159, + "y": 392 + }, + { + "h": 77, + "w": 77, + "x": 58, + "y": 83 + } + ] + } + }, + "id_str": "2048274658706010112", + "indices": [ + 135, + 158 + ], + "media_key": "3_2048274658706010112", + "media_results": { + "result": { + "media_key": "3_2048274658706010112" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGzu8yqbMAATw1q.jpg", + "original_info": { + "focus_rects": [ + { + "h": 374, + "w": 667, + "x": 0, + "y": 562 + }, + { + "h": 667, + "w": 667, + "x": 0, + "y": 416 + }, + { + "h": 760, + "w": 667, + "x": 0, + "y": 369 + }, + { + "h": 1200, + "w": 600, + "x": 0, + "y": 0 + }, + { + "h": 1200, + "w": 667, + "x": 0, + "y": 0 + } + ], + "height": 1200, + "width": 667 + }, + "sizes": { + "large": { + "h": 1200, + "resize": "fit", + "w": 667 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 667 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 378 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/UosklmGNkd" + } + ] + }, + "favorite_count": 554, + "favorited": false, + "full_text": "GPT2 又一绝佳应用场景:\n\n理发店 x 发型分析 x 专属报告\n\n千人千面, 给每个客户快速出 一份发型报告\n\n发型方案特意调教了:高情商+专业性\n\n情绪价值、知识性 能把客户 拿捏到位。\n\n实测下来, 确实能帮马斯克找到最佳发型\n\n金正恩也有了更帝王级的发型方案 https://t.co/UosklmGNkd", + "id_str": "2048275851045994847", + "is_quote_status": true, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 5, + "quoted_status_id_str": "2048272849547432162", + "quoted_status_permalink": { + "display": "x.com/xiaoxiaodong01…", + "expanded": "https://twitter.com/xiaoxiaodong01/status/2048272849547432162", + "url": "https://t.co/3kwYLGjlCT" + }, + "reply_count": 128, + "retweet_count": 96, + "retweeted": false, + "user_id_str": "1986087438721449984" + }, + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "entity_set": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "urls": [ + { + "display_url": "x.com/xiaoxiaodong01…", + "expanded_url": "https://x.com/xiaoxiaodong01/status/2048272849547432162", + "indices": [ + 245, + 268 + ], + "url": "https://t.co/wn8MZGP8KF" + } + ], + "user_mentions": [] + }, + "id": "Tm90ZVR3ZWV0OjIwNDgyNzU4NTA5Nzg4NDA1NzY=", + "richtext": { + "richtext_tags": [ + { + "from_index": 16, + "richtext_types": [ + "Bold" + ], + "to_index": 33 + } + ] + }, + "text": "GPT2 又一绝佳应用场景:\n\n理发店 x 发型分析 x 专属报告\n\n千人千面, 给每个客户快速出 一份发型报告\n\n发型方案特意调教了:高情商+专业性\n\n情绪价值、知识性 能把客户 拿捏到位。\n\n实测下来, 确实能帮马斯克找到最佳发型\n\n金正恩也有了更帝王级的发型方案\n\n试想一下,哪个男孩子,不愿意自己发型,是大数据整理后,最优推荐\n\n这套提示词做到了! \n\n如果我是梦幻芭莎发廊老板,今天就上,马上就用!\n\n每个人也可以借助这个提示词,找到最适合自己状态和偏好的发型。\n\n提示词如下\n\nhttps://t.co/wn8MZGP8KF" + } + } + }, + "previous_counts": { + "bookmark_count": 0, + "favorite_count": 0, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0 + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "article": { + "article_results": { + "result": { + "cover_media": { + "id": "QXBpTWVkaWE6DAAFCgABHGzs6WpawAAKAAIbkAAAtduAAAAA", + "media_id": "2048272417802600448", + "media_info": { + "__typename": "ApiImage", + "color_info": { + "palette": [ + { + "percentage": 47.41, + "rgb": { + "blue": 232, + "green": 242, + "red": 250 + } + }, + { + "percentage": 24.26, + "rgb": { + "blue": 7, + "green": 11, + "red": 212 + } + }, + { + "percentage": 19.01, + "rgb": { + "blue": 9, + "green": 9, + "red": 9 + } + }, + { + "percentage": 3.06, + "rgb": { + "blue": 104, + "green": 107, + "red": 232 + } + }, + { + "percentage": 1.76, + "rgb": { + "blue": 167, + "green": 173, + "red": 241 + } + } + ] + }, + "original_img_height": 793, + "original_img_url": "https://pbs.twimg.com/media/HGzs6WpawAAot91.jpg", + "original_img_width": 1983 + }, + "media_key": "3_2048272417802600448" + }, + "id": "QXJ0aWNsZUVudGl0eToyMDQ4MjY5ODU1NDc3MTcwMTc3", + "lifecycle_state": { + "modified_at_secs": 1777214861 + }, + "metadata": { + "first_published_at_secs": 1777181276 + }, + "preview_text": "这个提示词,太适合理发店用了,给客户人手一个专属方案\ngpt2 嘴甜, 还会哄人,Tony老师,估计从此业绩飞升\n\n提示词如下:\n \n \n新版升级版本的提示词:", + "rest_id": "2048269855477170177", + "title": "GPT2提示词:专属发型报告 x 高情商 x 理发店必备" + } + } + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2046072820095176704/QBve47KI_normal.jpg" + }, + "core": { + "created_at": "Wed Nov 05 15:09:51 +0000 2025", + "name": "小小东", + "screen_name": "xiaoxiaodong01" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxOTg2MDg3NDM4NzIxNDQ5OTg0", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "国际,不知名,顶级图片提示词专家\n月亮岛边上的AI爱好者\n遇事不决 可问东风", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 87, + "follow_request_sent": false, + "followers_count": 4623, + "friends_count": 1178, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 35, + "media_count": 169, + "needs_phone_verification": false, + "normal_followers_count": 4623, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1986087438721449984/1776952560", + "profile_interstitial_type": "", + "statuses_count": 1670, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "国际,不知名,顶级图片提示词专家\n月亮岛边上的AI爱好者\n遇事不决 可问东风" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1986087438721449984", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048272849547432162" + ], + "editable_until_msecs": "1777184877000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 380, + "bookmarked": false, + "conversation_id_str": "2048272849547432162", + "created_at": "Sun Apr 26 05:27:57 +0000 2026", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "x.com/i/article/2048…", + "expanded_url": "http://x.com/i/article/2048269855477170177", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/EKPKCjsLH5" + } + ], + "user_mentions": [] + }, + "favorite_count": 230, + "favorited": false, + "full_text": "https://t.co/EKPKCjsLH5", + "id_str": "2048272849547432162", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 5, + "retweet_count": 38, + "retweeted": false, + "user_id_str": "1986087438721449984" + }, + "rest_id": "2048272849547432162", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "149828", + "state": "EnabledWithCount" + } + } + }, + "rest_id": "2048275851045994847", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "152541", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048275851045994847", + "sortIndex": "2048752317548724196" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAdDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "976103945" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1685533477570035712/Z97h3-zt_normal.jpg" + }, + "core": { + "created_at": "Thu Nov 10 14:56:48 +0000 2022", + "name": "Prince Fynn", + "screen_name": "Prince_Fynnz" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxNTkwNzE5OTk4Mjc5OTU4NTI5", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Reproductive Health|| Men's Health and Wellness|| Men Coached || pfynn1036@gmail.com", + "entities": { + "description": {}, + "url": { + "urls": [ + { + "display_url": "princefynnmedical.com", + "expanded_url": "http://www.princefynnmedical.com", + "indices": [ + 0, + 23 + ], + "url": "https://t.co/kt0VZXfYEs" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 171730, + "follow_request_sent": false, + "followers_count": 452582, + "friends_count": 4497, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1206, + "media_count": 5791, + "needs_phone_verification": false, + "normal_followers_count": 452582, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1590719998279958529/1745964383", + "profile_interstitial_type": "", + "statuses_count": 87414, + "time_zone": "", + "translator_type": "none", + "url": "https://t.co/kt0VZXfYEs", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Reproductive Health|| Men's Health and Wellness|| Men Coached || pfynn1036@gmail.com" + }, + "profile_description_language": "en", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1590719998279958529", + "super_follow_eligible": true, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048712181529686177" + ], + "editable_until_msecs": "1777289621000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 11414, + "bookmarked": false, + "conversation_id_str": "2048712181529686177", + "created_at": "Mon Apr 27 10:33:41 +0000 2026", + "display_text_range": [ + 0, + 40 + ], + "entities": { + "hashtags": [], + "media": [ + { + "additional_media_info": { + "monetizable": false + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/lcOZsX7sU8", + "expanded_url": "https://x.com/Prince_Fynnz/status/2048712181529686177/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048712073845071872", + "indices": [ + 41, + 64 + ], + "media_key": "7_2048712073845071872", + "media_results": { + "result": { + "media_key": "7_2048712073845071872" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2048712073845071872/pu/img/uJXLdTspc4ThJErP.jpg", + "original_info": { + "focus_rects": [], + "height": 1024, + "width": 576 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 576 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 576 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/lcOZsX7sU8", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 77299, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/pl/WHf3Y1rPkkGHlfOs.m3u8?tag=19" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/320x568/2OkHKuZGYOW5ymEe.mp4?tag=19" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/480x852/7Wo5d_kpWuueQAIS.mp4?tag=19" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/576x1024/yXqKULKqg44ThFhR.mp4?tag=19" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": false + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/lcOZsX7sU8", + "expanded_url": "https://x.com/Prince_Fynnz/status/2048712181529686177/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048712073845071872", + "indices": [ + 41, + 64 + ], + "media_key": "7_2048712073845071872", + "media_results": { + "result": { + "media_key": "7_2048712073845071872" + } + }, + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2048712073845071872/pu/img/uJXLdTspc4ThJErP.jpg", + "original_info": { + "focus_rects": [], + "height": 1024, + "width": 576 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 576 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 576 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/lcOZsX7sU8", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 77299, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/pl/WHf3Y1rPkkGHlfOs.m3u8?tag=19" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/320x568/2OkHKuZGYOW5ymEe.mp4?tag=19" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/480x852/7Wo5d_kpWuueQAIS.mp4?tag=19" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/2048712073845071872/pu/vid/avc1/576x1024/yXqKULKqg44ThFhR.mp4?tag=19" + } + ] + } + } + ] + }, + "favorite_count": 11266, + "favorited": false, + "full_text": "Bro to bro,\n\nWatch, learn and save this. https://t.co/lcOZsX7sU8", + "id_str": "2048712181529686177", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 47, + "reply_count": 508, + "retweet_count": 628, + "retweeted": false, + "user_id_str": "1590719998279958529" + }, + "rest_id": "2048712181529686177", + "source": "\u003ca href=\"http://twitter.com/download/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "5004357", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048712181529686177", + "sortIndex": "2048752317548724195" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAeDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-758581345" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1947398670649069569/vCqS6Zws_normal.jpg" + }, + "core": { + "created_at": "Wed Jun 12 20:09:40 +0000 2024", + "name": "玉米症", + "screen_name": "kuba_odars90594" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxODAwOTgzNzQ4OTUyOTY1MTIw", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "我一直在哭", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 1083, + "follow_request_sent": false, + "followers_count": 19945, + "friends_count": 201, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 31, + "media_count": 176, + "needs_phone_verification": false, + "normal_followers_count": 19945, + "notifications": false, + "pinned_tweet_ids_str": [ + "2047183255666122951" + ], + "possibly_sensitive": false, + "profile_banner_url": "", + "profile_interstitial_type": "", + "statuses_count": 438, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "5.8km" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "我一直在哭" + }, + "profile_description_language": "qst", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1800983748952965120", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048281030185156712" + ], + "editable_until_msecs": "1777186827000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 389, + "bookmarked": false, + "conversation_id_str": "2048281030185156712", + "created_at": "Sun Apr 26 06:00:27 +0000 2026", + "display_text_range": [ + 0, + 19 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "medium": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "orig": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "small": { + "faces": [ + { + "h": 45, + "w": 45, + "x": 248, + "y": 115 + } + ] + } + }, + "id_str": "2048281016385871872", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016385871872", + "media_results": { + "result": { + "media_key": "3_2048281016385871872" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u23bIAA4tpu.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 1024, + "w": 512, + "x": 256, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016431984640", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016431984640", + "media_results": { + "result": { + "media_key": "3_2048281016431984640" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u3CawAAby2c.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 322 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 153 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 99 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016390086656", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016390086656", + "media_results": { + "result": { + "media_key": "3_2048281016390086656" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u24bcAAanr1.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 271 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 102 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 48 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016402616320", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016402616320", + "media_results": { + "result": { + "media_key": "3_2048281016402616320" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u27aoAA2gh0.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 271 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 102 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 48 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "medium": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "orig": { + "faces": [ + { + "h": 69, + "w": 69, + "x": 374, + "y": 174 + } + ] + }, + "small": { + "faces": [ + { + "h": 45, + "w": 45, + "x": 248, + "y": 115 + } + ] + } + }, + "id_str": "2048281016385871872", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016385871872", + "media_results": { + "result": { + "media_key": "3_2048281016385871872" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u23bIAA4tpu.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 0 + }, + { + "h": 1024, + "w": 512, + "x": 256, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016431984640", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016431984640", + "media_results": { + "result": { + "media_key": "3_2048281016431984640" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u3CawAAby2c.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 322 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 153 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 99 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016390086656", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016390086656", + "media_results": { + "result": { + "media_key": "3_2048281016390086656" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u24bcAAanr1.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 271 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 102 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 48 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/hlvSBW7seq", + "expanded_url": "https://x.com/kuba_odars90594/status/2048281030185156712/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048281016402616320", + "indices": [ + 20, + 43 + ], + "media_key": "3_2048281016402616320", + "media_results": { + "result": { + "media_key": "3_2048281016402616320" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HGz0u27aoAA2gh0.jpg", + "original_info": { + "focus_rects": [ + { + "h": 430, + "w": 768, + "x": 0, + "y": 271 + }, + { + "h": 768, + "w": 768, + "x": 0, + "y": 102 + }, + { + "h": 876, + "w": 768, + "x": 0, + "y": 48 + }, + { + "h": 1024, + "w": 512, + "x": 128, + "y": 0 + }, + { + "h": 1024, + "w": 768, + "x": 0, + "y": 0 + } + ], + "height": 1024, + "width": 768 + }, + "sizes": { + "large": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "medium": { + "h": 1024, + "resize": "fit", + "w": 768 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 510 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/hlvSBW7seq" + } + ] + }, + "favorite_count": 2312, + "favorited": false, + "full_text": "野外露出中好想被人发现然后脱路边凿一顿 https://t.co/hlvSBW7seq", + "id_str": "2048281030185156712", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 551, + "retweet_count": 27, + "retweeted": false, + "user_id_str": "1800983748952965120" + }, + "rest_id": "2048281030185156712", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "208659", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048281030185156712", + "sortIndex": "2048752317548724194" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAfDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-104540865" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2037647549994307584/DXtzMdgP_normal.jpg" + }, + "core": { + "created_at": "Sun Apr 28 15:30:54 +0000 2013", + "name": "Bi叔", + "screen_name": "Bishu9968" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMzg3MjI2MjQw", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "『 B叔碎碎念:解答网友日常各种小问题,记录那些离谱又真实的瞬间 』希望大家在X上开心快乐冲浪,晚上大脑控制住小脑,别上当受骗~啵啵🫶", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 392, + "follow_request_sent": false, + "followers_count": 47676, + "friends_count": 162, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 65, + "media_count": 198, + "needs_phone_verification": false, + "normal_followers_count": 47676, + "notifications": false, + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1387226240/1774648009", + "profile_interstitial_type": "", + "statuses_count": 1138, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "professional": { + "professional_type": "Creator", + "rest_id": "2037651260317262291" + }, + "profile_bio": { + "description": "『 B叔碎碎念:解答网友日常各种小问题,记录那些离谱又真实的瞬间 』希望大家在X上开心快乐冲浪,晚上大脑控制住小脑,别上当受骗~啵啵🫶" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1387226240", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048677191391813950" + ], + "editable_until_msecs": "1777281279000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 65, + "bookmarked": false, + "conversation_id_str": "2048677191391813950", + "created_at": "Mon Apr 27 08:14:39 +0000 2026", + "display_text_range": [ + 0, + 8 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/1L0Ctjr7ya", + "expanded_url": "https://x.com/Bishu9968/status/2048677191391813950/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048677184903266304", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048677184903266304", + "media_results": { + "result": { + "media_key": "3_2048677184903266304" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5dC5mbQAAInk4.jpg", + "original_info": { + "focus_rects": [ + { + "h": 724, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 1293, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 1474, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 2048, + "w": 1024, + "x": 0, + "y": 0 + }, + { + "h": 2048, + "w": 1293, + "x": 0, + "y": 0 + } + ], + "height": 2048, + "width": 1293 + }, + "sizes": { + "large": { + "h": 2048, + "resize": "fit", + "w": 1293 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 758 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 429 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/1L0Ctjr7ya" + }, + { + "display_url": "pic.x.com/1L0Ctjr7ya", + "expanded_url": "https://x.com/Bishu9968/status/2048677191391813950/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 231, + "w": 231, + "x": 908, + "y": 1290 + } + ] + }, + "medium": { + "faces": [ + { + "h": 152, + "w": 152, + "x": 601, + "y": 854 + } + ] + }, + "orig": { + "faces": [ + { + "h": 231, + "w": 231, + "x": 908, + "y": 1290 + } + ] + }, + "small": { + "faces": [ + { + "h": 86, + "w": 86, + "x": 340, + "y": 483 + } + ] + } + }, + "id_str": "2048677184924164096", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048677184924164096", + "media_results": { + "result": { + "media_key": "3_2048677184924164096" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5dC5raIAAuctf.jpg", + "original_info": { + "focus_rects": [ + { + "h": 739, + "w": 1320, + "x": 0, + "y": 1035 + }, + { + "h": 1320, + "w": 1320, + "x": 0, + "y": 493 + }, + { + "h": 1505, + "w": 1320, + "x": 0, + "y": 308 + }, + { + "h": 1813, + "w": 907, + "x": 413, + "y": 0 + }, + { + "h": 1813, + "w": 1320, + "x": 0, + "y": 0 + } + ], + "height": 1813, + "width": 1320 + }, + "sizes": { + "large": { + "h": 1813, + "resize": "fit", + "w": 1320 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 874 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 495 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/1L0Ctjr7ya" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/1L0Ctjr7ya", + "expanded_url": "https://x.com/Bishu9968/status/2048677191391813950/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048677184903266304", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048677184903266304", + "media_results": { + "result": { + "media_key": "3_2048677184903266304" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5dC5mbQAAInk4.jpg", + "original_info": { + "focus_rects": [ + { + "h": 724, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 1293, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 1474, + "w": 1293, + "x": 0, + "y": 0 + }, + { + "h": 2048, + "w": 1024, + "x": 0, + "y": 0 + }, + { + "h": 2048, + "w": 1293, + "x": 0, + "y": 0 + } + ], + "height": 2048, + "width": 1293 + }, + "sizes": { + "large": { + "h": 2048, + "resize": "fit", + "w": 1293 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 758 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 429 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/1L0Ctjr7ya" + }, + { + "display_url": "pic.x.com/1L0Ctjr7ya", + "expanded_url": "https://x.com/Bishu9968/status/2048677191391813950/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 231, + "w": 231, + "x": 908, + "y": 1290 + } + ] + }, + "medium": { + "faces": [ + { + "h": 152, + "w": 152, + "x": 601, + "y": 854 + } + ] + }, + "orig": { + "faces": [ + { + "h": 231, + "w": 231, + "x": 908, + "y": 1290 + } + ] + }, + "small": { + "faces": [ + { + "h": 86, + "w": 86, + "x": 340, + "y": 483 + } + ] + } + }, + "id_str": "2048677184924164096", + "indices": [ + 9, + 32 + ], + "media_key": "3_2048677184924164096", + "media_results": { + "result": { + "media_key": "3_2048677184924164096" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG5dC5raIAAuctf.jpg", + "original_info": { + "focus_rects": [ + { + "h": 739, + "w": 1320, + "x": 0, + "y": 1035 + }, + { + "h": 1320, + "w": 1320, + "x": 0, + "y": 493 + }, + { + "h": 1505, + "w": 1320, + "x": 0, + "y": 308 + }, + { + "h": 1813, + "w": 907, + "x": 413, + "y": 0 + }, + { + "h": 1813, + "w": 1320, + "x": 0, + "y": 0 + } + ], + "height": 1813, + "width": 1320 + }, + "sizes": { + "large": { + "h": 1813, + "resize": "fit", + "w": 1320 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 874 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 495 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/1L0Ctjr7ya" + } + ] + }, + "favorite_count": 297, + "favorited": false, + "full_text": "这么刺激的吗?😅 https://t.co/1L0Ctjr7ya", + "id_str": "2048677191391813950", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 393, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1387226240" + }, + "rest_id": "2048677191391813950", + "source": "\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "100706", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048677191391813950", + "sortIndex": "2048752317548724193" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_promoted", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAl3KvlBJAuYPAoACgAAAZ3PEobeAAAAAA==", + "injectionType": "ForYouPromoted" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "promotedMetadata": { + "adMetadataContainer": { + "isQuickPromote": false, + "renderLegacyWebsiteCard": false, + "renderSalesCtaWebsiteCard": false + }, + "advertiser_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/965567670023262208/hgMkxL-r_normal.jpg" + }, + "core": { + "created_at": "Mon May 05 08:44:26 +0000 2014", + "name": "KeAi Publishing", + "screen_name": "KeAiPublishing" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyNDc4MDQ0Njcw", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Joint venture of Elsevier and CSPM for the publication of world-class academic journals. Chinese Roots, Global Impact. https://t.co/0q5HE1RrAa", + "entities": { + "description": { + "urls": [ + { + "display_url": "keaipublishing.com", + "expanded_url": "http://www.keaipublishing.com/", + "indices": [ + 119, + 142 + ], + "url": "https://t.co/0q5HE1RrAa" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 50, + "follow_request_sent": false, + "followers_count": 5442, + "friends_count": 482, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 72, + "media_count": 3221, + "needs_phone_verification": false, + "normal_followers_count": 5442, + "notifications": false, + "pinned_tweet_ids_str": [ + "2003341549615145067" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2478044670/1719980301", + "profile_interstitial_type": "", + "statuses_count": 3752, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Joint venture of Elsevier and CSPM for the publication of world-class academic journals. Chinese Roots, Global Impact. https://t.co/0q5HE1RrAa" + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2478044670", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + }, + "clickTrackingInfo": { + "urlParams": [ + { + "key": "twclid", + "value": "2blfwob9e9n3bf1osv3h52rkuk" + } + ] + }, + "impressionId": "6789788009c99c91", + "impressionString": "6789788009c99c91" + }, + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "entities": [], + "text": "Who can reply?" + }, + "subtext": { + "entities": [], + "text": "Only some accounts can reply." + } + } + } + ] + }, + "tweet": { + "card": { + "legacy": { + "binding_values": [ + { + "key": "unified_card", + "value": { + "string_value": "{\"layout\":{\"type\":\"swipeable\",\"data\":{\"slides\":[[\"media_1\",\"details_1\"],[\"media_2\",\"details_2\"],[\"media_3\",\"details_3\"],[\"media_4\",\"details_4\"],[\"media_5\",\"details_5\"],[\"media_6\",\"details_6\"]]}},\"type\":\"image_multi_dest_carousel_website\",\"component_objects\":{\"media_4\":{\"type\":\"media\",\"data\":{\"id\":\"3_1772199236450353152\",\"destination\":\"browser_4\"}},\"details_6\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_6\"}},\"details_3\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_3\"}},\"media_3\":{\"type\":\"media\",\"data\":{\"id\":\"3_1799068617511985153\",\"destination\":\"browser_3\"}},\"media_6\":{\"type\":\"media\",\"data\":{\"id\":\"3_1755560145575145472\",\"destination\":\"browser_6\"}},\"details_5\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_5\"}},\"media_5\":{\"type\":\"media\",\"data\":{\"id\":\"3_1765617234775252992\",\"destination\":\"browser_5\"}},\"details_2\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_2\"}},\"media_2\":{\"type\":\"media\",\"data\":{\"id\":\"3_1971419216889905153\",\"destination\":\"browser_2\"}},\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"details_4\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Full Open Access journals in English\",\"is_rtl\":false},\"subtitle\":{\"content\":\"keaipublishing.com\",\"is_rtl\":false},\"destination\":\"browser_4\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1985605562525237250\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_3\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}},\"browser_6\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}},\"browser_5\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}},\"browser_2\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}},\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}},\"browser_4\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.keaipublishing.com/en/journals/\",\"vanity\":\"keaipublishing.com\"}}}},\"components\":[],\"media_entities\":{\"3_1971419216889905153\":{\"id\":1971419216889905153,\"id_str\":\"1971419216889905153\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/G1vjVS4aAAELl0m.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":49,\"y\":0,\"h\":800,\"w\":702},{\"x\":200,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1971419216889905153\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":227,\"green\":162,\"blue\":37},\"percentage\":56.42},{\"rgb\":{\"red\":255,\"green\":255,\"blue\":255},\"percentage\":17.65},{\"rgb\":{\"red\":47,\"green\":159,\"blue\":173},\"percentage\":12.71},{\"rgb\":{\"red\":30,\"green\":107,\"blue\":54},\"percentage\":6.24},{\"rgb\":{\"red\":237,\"green\":198,\"blue\":122},\"percentage\":4.51}]}},\"ttl\":-1}}},\"3_1985605562525237250\":{\"id\":1985605562525237250,\"id_str\":\"1985605562525237250\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/G45JvSpbQAIqWcd.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1985605562525237250\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":8,\"green\":53,\"blue\":88},\"percentage\":32.96},{\"rgb\":{\"red\":48,\"green\":144,\"blue\":197},\"percentage\":21.83},{\"rgb\":{\"red\":197,\"green\":219,\"blue\":228},\"percentage\":14.0},{\"rgb\":{\"red\":106,\"green\":216,\"blue\":230},\"percentage\":7.96},{\"rgb\":{\"red\":16,\"green\":39,\"blue\":55},\"percentage\":4.21}]}},\"ttl\":-1}}},\"3_1799068617511985153\":{\"id\":1799068617511985153,\"id_str\":\"1799068617511985153\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GPeTYDFa4AEkIHg.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1799068617511985153\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":0,\"green\":18,\"blue\":47},\"percentage\":63.89},{\"rgb\":{\"red\":0,\"green\":0,\"blue\":20},\"percentage\":10.24},{\"rgb\":{\"red\":242,\"green\":242,\"blue\":148},\"percentage\":9.55},{\"rgb\":{\"red\":27,\"green\":110,\"blue\":132},\"percentage\":6.49},{\"rgb\":{\"red\":171,\"green\":208,\"blue\":221},\"percentage\":4.39}]}},\"ttl\":-1}}},\"3_1765617234775252992\":{\"id\":1765617234775252992,\"id_str\":\"1765617234775252992\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GIC7hTgWIAAxOrc.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1765617234775252992\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":28,\"green\":111,\"blue\":169},\"percentage\":18.02},{\"rgb\":{\"red\":190,\"green\":213,\"blue\":230},\"percentage\":16.53},{\"rgb\":{\"red\":6,\"green\":88,\"blue\":85},\"percentage\":13.13},{\"rgb\":{\"red\":0,\"green\":111,\"blue\":57},\"percentage\":12.68},{\"rgb\":{\"red\":125,\"green\":165,\"blue\":59},\"percentage\":8.33}]}},\"ttl\":-1}}},\"3_1772199236450353152\":{\"id\":1772199236450353152,\"id_str\":\"1772199236450353152\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GJgd0OfXgAA_XoN.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":236,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1772199236450353152\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":26,\"green\":149,\"blue\":121},\"percentage\":33.01},{\"rgb\":{\"red\":186,\"green\":213,\"blue\":219},\"percentage\":16.03},{\"rgb\":{\"red\":59,\"green\":167,\"blue\":185},\"percentage\":13.54},{\"rgb\":{\"red\":61,\"green\":62,\"blue\":58},\"percentage\":9.24},{\"rgb\":{\"red\":221,\"green\":202,\"blue\":21},\"percentage\":4.42}]}},\"ttl\":-1}}},\"3_1755560145575145472\":{\"id\":1755560145575145472,\"id_str\":\"1755560145575145472\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GF0ApqrW8AADCNa.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":76,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":702},{\"x\":0,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":2478044670,\"source_user_id_str\":\"2478044670\",\"media_key\":\"3_1755560145575145472\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":176,\"green\":107,\"blue\":131},\"percentage\":46.44},{\"rgb\":{\"red\":234,\"green\":216,\"blue\":208},\"percentage\":33.62},{\"rgb\":{\"red\":188,\"green\":169,\"blue\":207},\"percentage\":5.16},{\"rgb\":{\"red\":198,\"green\":210,\"blue\":189},\"percentage\":4.53},{\"rgb\":{\"red\":140,\"green\":166,\"blue\":112},\"percentage\":2.06}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://twitter.com", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "unified_card", + "url": "card://1987720616930406400", + "user_refs_results": [] + }, + "rest_id": "card://1987720616930406400" + }, + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/965567670023262208/hgMkxL-r_normal.jpg" + }, + "core": { + "created_at": "Mon May 05 08:44:26 +0000 2014", + "name": "KeAi Publishing", + "screen_name": "KeAiPublishing" + }, + "dm_permissions": { + "can_dm": false + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoyNDc4MDQ0Njcw", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "Joint venture of Elsevier and CSPM for the publication of world-class academic journals. Chinese Roots, Global Impact. https://t.co/0q5HE1RrAa", + "entities": { + "description": { + "urls": [ + { + "display_url": "keaipublishing.com", + "expanded_url": "http://www.keaipublishing.com/", + "indices": [ + 119, + 142 + ], + "url": "https://t.co/0q5HE1RrAa" + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 50, + "follow_request_sent": false, + "followers_count": 5442, + "friends_count": 482, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 72, + "media_count": 3221, + "needs_phone_verification": false, + "normal_followers_count": 5442, + "notifications": false, + "pinned_tweet_ids_str": [ + "2003341549615145067" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2478044670/1719980301", + "profile_interstitial_type": "", + "statuses_count": 3752, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "Joint venture of Elsevier and CSPM for the publication of world-class academic journals. Chinese Roots, Global Impact. https://t.co/0q5HE1RrAa" + }, + "profile_description_language": "en", + "profile_image_shape": "Square", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "2478044670", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false, + "verified_type": "Business" + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "1987720619543404725" + ], + "editable_until_msecs": "1762748100000", + "edits_remaining": "5", + "is_edit_eligible": false + }, + "grok_analysis_button": true, + "grok_annotations": {}, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": false, + "legacy": { + "bookmark_count": 45, + "bookmarked": false, + "conversation_control": { + "conversation_owner_results": { + "result": { + "__typename": "User", + "core": { + "screen_name": "KeAiPublishing" + } + } + }, + "policy": "ByInvitation" + }, + "conversation_id_str": "1987720619543404725", + "created_at": "Mon Nov 10 03:15:00 +0000 2025", + "display_text_range": [ + 0, + 136 + ], + "entities": { + "hashtags": [], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 135, + "favorited": false, + "full_text": "Follow KeAi joint venture of Elsevier and SP to stay updated on latest news from Chinese research. Full Open Access journals in English.", + "id_str": "1987720619543404725", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 6, + "retweeted": false, + "scopes": { + "followers": false + }, + "user_id_str": "2478044670" + }, + "rest_id": "1987720619543404725", + "source": "\u003ca href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\"\u003eadvertiser-interface\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "13310910", + "state": "EnabledWithCount" + } + } + } + } + } + }, + "entryId": "promoted-tweet-1987720619543404725-6789788009c99c91", + "sortIndex": "2048752317548724192" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_phoenix_retrieval", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAhDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouPhoenixRetrieval" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "-1765203927" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/2012943098079252480/AVEb9fqg_normal.jpg" + }, + "core": { + "created_at": "Wed Mar 14 07:18:02 +0000 2018", + "name": "蔡文姬", + "screen_name": "PatidarSushant" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjo5NzM4MjA1MzEyOTExMTk2MTY=", + "is_blue_verified": false, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "不要让别人定义你 主号@mbk__Als", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 265, + "follow_request_sent": false, + "followers_count": 11150, + "friends_count": 3, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 7, + "media_count": 177, + "needs_phone_verification": false, + "normal_followers_count": 11150, + "notifications": false, + "pinned_tweet_ids_str": [ + "2040147541699035540" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/973820531291119616/1768758010", + "profile_interstitial_type": "", + "statuses_count": 2352, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "不要让别人定义你 主号@mbk__Als" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "973820531291119616", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048423616875032924" + ], + "editable_until_msecs": "1777220822000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": true + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 106, + "bookmarked": false, + "conversation_id_str": "2048423616875032924", + "created_at": "Sun Apr 26 15:27:02 +0000 2026", + "display_text_range": [ + 0, + 67 + ], + "entities": { + "hashtags": [], + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/TPpQKCnw6O", + "expanded_url": "https://x.com/PatidarSushant/status/2048423616875032924/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 232, + "w": 232, + "x": 292, + "y": 270 + } + ] + }, + "medium": { + "faces": [ + { + "h": 217, + "w": 217, + "x": 273, + "y": 253 + } + ] + }, + "orig": { + "faces": [ + { + "h": 232, + "w": 232, + "x": 292, + "y": 270 + } + ] + }, + "small": { + "faces": [ + { + "h": 123, + "w": 123, + "x": 155, + "y": 143 + } + ] + } + }, + "id_str": "2048423553444581376", + "indices": [ + 68, + 91 + ], + "media_key": "3_2048423553444581376", + "media_results": { + "result": { + "media_key": "3_2048423553444581376" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG12XmybkAA95Qh.jpg", + "original_info": { + "focus_rects": [ + { + "h": 403, + "w": 720, + "x": 0, + "y": 151 + }, + { + "h": 720, + "w": 720, + "x": 0, + "y": 0 + }, + { + "h": 821, + "w": 720, + "x": 0, + "y": 0 + }, + { + "h": 1280, + "w": 640, + "x": 80, + "y": 0 + }, + { + "h": 1280, + "w": 720, + "x": 0, + "y": 0 + } + ], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/TPpQKCnw6O" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/TPpQKCnw6O", + "expanded_url": "https://x.com/PatidarSushant/status/2048423616875032924/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048423601813233666", + "indices": [ + 68, + 91 + ], + "media_key": "3_2048423601813233666", + "media_results": { + "result": { + "media_key": "3_2048423601813233666" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG12aa-aoAIe5s6.jpg", + "original_info": { + "focus_rects": [ + { + "h": 403, + "w": 720, + "x": 0, + "y": 279 + }, + { + "h": 720, + "w": 720, + "x": 0, + "y": 120 + }, + { + "h": 821, + "w": 720, + "x": 0, + "y": 70 + }, + { + "h": 1280, + "w": 640, + "x": 32, + "y": 0 + }, + { + "h": 1280, + "w": 720, + "x": 0, + "y": 0 + } + ], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/TPpQKCnw6O" + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/TPpQKCnw6O", + "expanded_url": "https://x.com/PatidarSushant/status/2048423616875032924/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "h": 232, + "w": 232, + "x": 292, + "y": 270 + } + ] + }, + "medium": { + "faces": [ + { + "h": 217, + "w": 217, + "x": 273, + "y": 253 + } + ] + }, + "orig": { + "faces": [ + { + "h": 232, + "w": 232, + "x": 292, + "y": 270 + } + ] + }, + "small": { + "faces": [ + { + "h": 123, + "w": 123, + "x": 155, + "y": 143 + } + ] + } + }, + "id_str": "2048423553444581376", + "indices": [ + 68, + 91 + ], + "media_key": "3_2048423553444581376", + "media_results": { + "result": { + "media_key": "3_2048423553444581376" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG12XmybkAA95Qh.jpg", + "original_info": { + "focus_rects": [ + { + "h": 403, + "w": 720, + "x": 0, + "y": 151 + }, + { + "h": 720, + "w": 720, + "x": 0, + "y": 0 + }, + { + "h": 821, + "w": 720, + "x": 0, + "y": 0 + }, + { + "h": 1280, + "w": 640, + "x": 80, + "y": 0 + }, + { + "h": 1280, + "w": 720, + "x": 0, + "y": 0 + } + ], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/TPpQKCnw6O" + }, + { + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/TPpQKCnw6O", + "expanded_url": "https://x.com/PatidarSushant/status/2048423616875032924/photo/1", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "orig": { + "faces": [] + }, + "small": { + "faces": [] + } + }, + "id_str": "2048423601813233666", + "indices": [ + 68, + 91 + ], + "media_key": "3_2048423601813233666", + "media_results": { + "result": { + "media_key": "3_2048423601813233666" + } + }, + "media_url_https": "https://pbs.twimg.com/media/HG12aa-aoAIe5s6.jpg", + "original_info": { + "focus_rects": [ + { + "h": 403, + "w": 720, + "x": 0, + "y": 279 + }, + { + "h": 720, + "w": 720, + "x": 0, + "y": 120 + }, + { + "h": 821, + "w": 720, + "x": 0, + "y": 70 + }, + { + "h": 1280, + "w": 640, + "x": 32, + "y": 0 + }, + { + "h": 1280, + "w": 720, + "x": 0, + "y": 0 + } + ], + "height": 1280, + "width": 720 + }, + "sizes": { + "large": { + "h": 1280, + "resize": "fit", + "w": 720 + }, + "medium": { + "h": 1200, + "resize": "fit", + "w": 675 + }, + "small": { + "h": 680, + "resize": "fit", + "w": 383 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "photo", + "url": "https://t.co/TPpQKCnw6O" + } + ] + }, + "favorite_count": 1024, + "favorited": false, + "full_text": "违规发不出,只能在X发了\n\n开脱!!!!! \n\n上供!!!!!\n\n Luo照 实况!!!! https://t.co/TPpQKCnw6O", + "id_str": "2048423616875032924", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 2893, + "retweet_count": 47, + "retweeted": false, + "user_id_str": "973820531291119616" + }, + "rest_id": "2048423616875032924", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "398624", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048423616875032924", + "sortIndex": "2048752317548724191" + }, + { + "content": { + "__typename": "TimelineTimelineItem", + "clientEventInfo": { + "component": "for_you_tweet_mixer", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAABDAABCgABAEAAAgoCAAEKAAKAAAAAAAABAAoACXcq+UEkC5g8CgAKAAABnc8RyH8IAAsAAAAiDwAMAwAAACABAAIKAgBAAAABAAAAAACAAAAAAAAAAAAAAAAAAADgAQoADiIKmb4BR4ZmCgAQIgqZvgFHhmYKABFBiIRPAcRE8wAAAAA=", + "injectionType": "ForYouTweetMixer" + } + }, + "element": "tweet" + }, + "entryType": "TimelineTimelineItem", + "feedbackInfo": { + "feedbackKeys": [ + "1234450679" + ] + }, + "itemContent": { + "__typename": "TimelineTweet", + "itemType": "TimelineTweet", + "tweetDisplayType": "Tweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "core": { + "user_results": { + "result": { + "__typename": "User", + "affiliates_highlighted_label": {}, + "avatar": { + "image_url": "https://pbs.twimg.com/profile_images/1653396056623960067/f72MJSLx_normal.jpg" + }, + "core": { + "created_at": "Sat Mar 06 05:37:35 +0000 2021", + "name": "邦主", + "screen_name": "bangzhu_x" + }, + "dm_permissions": { + "can_dm": true + }, + "follow_request_sent": false, + "has_graduated_access": true, + "id": "VXNlcjoxMzY4MDczMTA5MDM1NzczOTU1", + "is_blue_verified": true, + "legacy": { + "default_profile": true, + "default_profile_image": false, + "description": "金融圈 擦边 两性 科技 @RGB_BTC | 专注比特币生态\n#BTC | #RGB| #ordinals| #区块链| #crypto #两性", + "entities": { + "description": {} + }, + "fast_followers_count": 0, + "favourites_count": 3295, + "follow_request_sent": false, + "followers_count": 16714, + "friends_count": 349, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 137, + "media_count": 1319, + "needs_phone_verification": false, + "normal_followers_count": 16714, + "notifications": false, + "pinned_tweet_ids_str": [ + "1890957532958486872" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1368073109035773955/1681204313", + "profile_interstitial_type": "", + "statuses_count": 8206, + "time_zone": "", + "translator_type": "none", + "url": "", + "utc_offset": 0, + "want_retweets": false, + "withheld_description": "", + "withheld_scope": "" + }, + "location": { + "location": "新加坡" + }, + "media_permissions": { + "can_media_tag": false + }, + "parody_commentary_fan_label": "None", + "privacy": { + "protected": false + }, + "profile_bio": { + "description": "金融圈 擦边 两性 科技 @RGB_BTC | 专注比特币生态\n#BTC | #RGB| #ordinals| #区块链| #crypto #两性" + }, + "profile_description_language": "zh", + "profile_image_shape": "Circle", + "relationship_perspectives": { + "blocked_by": false, + "blocking": false, + "followed_by": false, + "following": false, + "muting": false + }, + "rest_id": "1368073109035773955", + "super_follow_eligible": false, + "super_followed_by": false, + "super_following": false, + "verification": { + "verified": false + } + } + } + }, + "edit_control": { + "edit_tweet_ids": [ + "2048568469000794138" + ], + "editable_until_msecs": "1777255358000", + "edits_remaining": "5", + "is_edit_eligible": true + }, + "grok_analysis_button": true, + "grok_annotations": { + "is_image_editable_by_grok": false + }, + "grok_translated_post_with_availability": { + "is_available": false + }, + "is_translatable": true, + "legacy": { + "bookmark_count": 1294, + "bookmarked": false, + "conversation_id_str": "2048568469000794138", + "created_at": "Mon Apr 27 01:02:38 +0000 2026", + "display_text_range": [ + 0, + 66 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 22, + 25 + ], + "text": "延时" + }, + { + "indices": [ + 26, + 29 + ], + "text": "男女" + }, + { + "indices": [ + 30, + 33 + ], + "text": "两性" + }, + { + "indices": [ + 34, + 39 + ], + "text": "夫妻关系" + }, + { + "indices": [ + 40, + 43 + ], + "text": "保健" + }, + { + "indices": [ + 45, + 48 + ], + "text": "约会" + }, + { + "indices": [ + 49, + 52 + ], + "text": "美女" + }, + { + "indices": [ + 53, + 56 + ], + "text": "补肾" + }, + { + "indices": [ + 57, + 60 + ], + "text": "技巧" + }, + { + "indices": [ + 61, + 66 + ], + "text": "男人女人" + } + ], + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/R9QZYPyTaE", + "expanded_url": "https://x.com/bangzhu_x/status/2048568469000794138/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048568236380418049", + "indices": [ + 67, + 90 + ], + "media_key": "13_2048568236380418049", + "media_results": { + "result": { + "media_key": "13_2048568236380418049" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048568236380418049/img/T8viLrgEK_Y3lqAY.jpg", + "original_info": { + "focus_rects": [], + "height": 640, + "width": 360 + }, + "sizes": { + "large": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "medium": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "small": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/R9QZYPyTaE", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 136417, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/pl/oOPzyTDZPXZg8ilb.m3u8?tag=21\u0026v=88f" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/vid/avc1/320x568/fvpaTlvkNEmXJ0jx.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/vid/avc1/360x640/TXQIx7of9X9_MnIp.mp4?tag=21" + } + ] + } + } + ], + "smarttags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "additional_media_info": { + "monetizable": true + }, + "allow_download_status": { + "allow_download": true + }, + "display_url": "pic.x.com/R9QZYPyTaE", + "expanded_url": "https://x.com/bangzhu_x/status/2048568469000794138/video/1", + "ext_media_availability": { + "status": "Available" + }, + "id_str": "2048568236380418049", + "indices": [ + 67, + 90 + ], + "media_key": "13_2048568236380418049", + "media_results": { + "result": { + "media_key": "13_2048568236380418049" + } + }, + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2048568236380418049/img/T8viLrgEK_Y3lqAY.jpg", + "original_info": { + "focus_rects": [], + "height": 640, + "width": 360 + }, + "sizes": { + "large": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "medium": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "small": { + "h": 640, + "resize": "fit", + "w": 360 + }, + "thumb": { + "h": 150, + "resize": "crop", + "w": 150 + } + }, + "type": "video", + "url": "https://t.co/R9QZYPyTaE", + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 136417, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/pl/oOPzyTDZPXZg8ilb.m3u8?tag=21\u0026v=88f" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/vid/avc1/320x568/fvpaTlvkNEmXJ0jx.mp4?tag=21" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/2048568236380418049/vid/avc1/360x640/TXQIx7of9X9_MnIp.mp4?tag=21" + } + ] + } + } + ] + }, + "favorite_count": 2517, + "favorited": false, + "full_text": "床上的“骚话”要怎么说 才能让女人更爽呢🫣\n#延时 #男女 #两性 #夫妻关系 #保健 \n#约会 #美女 #补肾 #技巧 #男人女人 https://t.co/R9QZYPyTaE", + "id_str": "2048568469000794138", + "is_quote_status": false, + "lang": "zh", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 421, + "retweet_count": 112, + "retweeted": false, + "user_id_str": "1368073109035773955" + }, + "rest_id": "2048568469000794138", + "source": "\u003ca href=\"https://mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c/a\u003e", + "unmention_data": {}, + "views": { + "count": "220308", + "state": "EnabledWithCount" + } + } + } + } + }, + "entryId": "tweet-2048568469000794138", + "sortIndex": "2048752317548724190" + }, + { + "content": { + "__typename": "TimelineTimelineCursor", + "cursorType": "Top", + "entryType": "TimelineTimelineCursor", + "value": "DAABCgABHG6hYMhAJxEKAAIcbdwAPNbReAgAAwAAAAEAAA" + }, + "entryId": "cursor-top-2048752317548724225", + "sortIndex": "2048752317548724225" + }, + { + "content": { + "__typename": "TimelineTimelineCursor", + "cursorType": "Bottom", + "entryType": "TimelineTimelineCursor", + "value": "DAABCgABHG6hYMg__9sKAAIcbforNNuwGggAAwAAAAIAAA" + }, + "entryId": "cursor-bottom-2048752317548724189", + "sortIndex": "2048752317548724189" + } + ], + "type": "TimelineAddEntries" + } + ], + "metadata": { + "scribeConfig": { + "page": "for_you" + } + }, + "responseObjects": { + "feedbackActions": [ + { + "key": "1374059365", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWmofQma2vtO44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "2060038958", + "value": { + "childKeys": [ + "1999562995", + "-1315759776" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW4oXSwaW3nOw4ACaAgKPdvcW1%2BiEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "160677553", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from Sizhe_bitcat.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaOgKnRzKmH6SUAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from Sizhe_bitcat" + } + }, + { + "key": "427692253", + "value": { + "childKeys": [ + "-179057168", + "-18566691" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWpoe4gb64su44ACaAwNulra%2Bw5zYAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "842467613", + "value": { + "childKeys": [ + "821844015", + "-1949708787" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW2sfS5cCMxu04ACaAwLXhk7jbyzgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "1067893984", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWqsLe0cOCkOw4ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "292264311", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from likiy13.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaGwNHBwZf8nSkAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from likiy13" + } + }, + { + "key": "290722867", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWkITenZOEi%2B44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "484033052", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from PatidarSushant.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgLepo6fagxsAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from PatidarSushant" + } + }, + { + "key": "1624552932", + "value": { + "childKeys": [ + "-192691337", + "231967534" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW8Ibe0eWFse04ACaYgLPts6O%2F3i4AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-192691337", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from ManPie6135.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaYgLPts6O%2F3i4AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from ManPie6135" + } + }, + { + "key": "-2068151666", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW0IHcxdSv%2Buw4ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-38933182", + "value": { + "childKeys": [ + "1947067956", + "670930073" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW7MTSleOcvu44ACaAwKfNjvrg%2FCEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "1912316241", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from Daxiaojie111.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgNmdvtWPoTYAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from Daxiaojie111" + } + }, + { + "key": "-1126599733", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from Soranlan.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgL%2BRrO6z2h0AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from Soranlan" + } + }, + { + "key": "1831520203", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from maimaiRC_.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwNfx%2BMPx7DMAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from maimaiRC_" + } + }, + { + "key": "-1315759776", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW4oXSwaW3nOw4ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "957632798", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from whyyoutouzhele.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaCwL3Bs8ix%2FiIAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from whyyoutouzhele" + } + }, + { + "key": "2049222010", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWuMXblaabu%2B04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-1522945741", + "value": { + "childKeys": [ + "111315162", + "-1050297257" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW0MDSvbHCl%2B04ACaAgN3ZpNjgwi8AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "950624838", + "value": { + "childKeys": [ + "1912316241", + "-1792069586" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWzoS9mdffsu04ACaAgNmdvtWPoTYAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "1234450679", + "value": { + "childKeys": [ + "315687850", + "1971199590" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWtMDdzeaK%2Fe04ACaGwLut0c%2Bv%2FCUAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "154848862", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWoMTQpe7Hqe04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "254389107", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from xiaohu.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwN6VhLvy%2FTAAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from xiaohu" + } + }, + { + "key": "-1499826473", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWwsK9sfy3vu44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-104540865", + "value": { + "childKeys": [ + "1870844679", + "-1471948948" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW%2FITVxaPDru44ACaAkvuqCgAWgKD2pxMA", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "35557765", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from yangyi.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCbMooCiFwAWgKD2pxMA", + "hasUndoAction": true, + "prompt": "Show fewer posts from yangyi" + } + }, + { + "key": "-1792069586", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWzoS9mdffsu04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-1365253210", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from elonmusk.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCbaiJMqABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from elonmusk" + } + }, + { + "key": "976103945", + "value": { + "childKeys": [ + "-61954322", + "-1499826473" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWwsK9sfy3vu44ACaCgLKpotqvkywAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-378511208", + "value": { + "childKeys": [ + "254389107", + "-1533456738" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW%2BMXetdG0l%2B44ACaAwN6VhLvy%2FTAAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-2100982973", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWzIfc5eSHmu44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-400082699", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW2MHQ%2BfG0vu04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "1729811756", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from xiaoxiaodong01.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgNzdloCAkDcAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from xiaoxiaodong01" + } + }, + { + "key": "-1069285503", + "value": { + "childKeys": [ + "1364704228", + "-2007953475" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWwsLQianFx%2B44ACaAgLWhg93GnzEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1137832894", + "value": { + "childKeys": [ + "1831520203", + "746916888" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW9ofYlYS3se04ACaAwNfx%2BMPx7DMAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "792482069", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW8MW2zYeA7u04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-1950792924", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from 77yio.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaCwNHlgsSmnzgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from 77yio" + } + }, + { + "key": "746916888", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW9ofYlYS3se04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-1156524488", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW8MazsdW0i%2Bw4ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-18566691", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWpoe4gb64su44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "1971199590", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWtMDdzeaK%2Fe04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "315687850", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from bangzhu_x.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaGwLut0c%2Bv%2FCUAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from bangzhu_x" + } + }, + { + "key": "-1538169986", + "value": { + "childKeys": [ + "957632798", + "1397293595" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWpoay5f6wke44ACaCwL3Bs8ix%2FiIAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1906911666", + "value": { + "childKeys": [ + "121291358", + "154848862" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWoMTQpe7Hqe04ACaAwLXZ%2FemQzTgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-141039041", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from op7418.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCbAifm3DAAWgKD2pxMA", + "hasUndoAction": true, + "prompt": "Show fewer posts from op7418" + } + }, + { + "key": "-61954322", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from Prince_Fynnz.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaCgLKpotqvkywAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from Prince_Fynnz" + } + }, + { + "key": "56327174", + "value": { + "childKeys": [ + "-1365253210", + "792482069" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW8MW2zYeA7u04ACbaiJMqABaAoPanEwA%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "329705191", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from JewBizLogic.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaCwNCl7e7%2Bti0AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from JewBizLogic" + } + }, + { + "key": "-343564732", + "value": { + "childKeys": [ + "329705191", + "-1156524488" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW8MazsdW0i%2Bw4ACaCwNCl7e7%2Bti0AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1050297257", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW0MDSvbHCl%2B04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "111315162", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from evanlong_me.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgN3ZpNjgwi8AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from evanlong_me" + } + }, + { + "key": "1999562995", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from wmtbxsh.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgKPdvcW1%2BiEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from wmtbxsh" + } + }, + { + "key": "-1765203927", + "value": { + "childKeys": [ + "484033052", + "2049222010" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWuMXblaabu%2B04ACaAgLepo6fagxsAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1475394653", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from qkl2058.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgNWN28rPmDMAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from qkl2058" + } + }, + { + "key": "-479355088", + "value": { + "childKeys": [ + "-141039041", + "290722867" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWkITenZOEi%2B44ACbAifm3DAAWgKD2pxMA", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "1364704228", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from xrfxo81568428.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgLWhg93GnzEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from xrfxo81568428" + } + }, + { + "key": "231967534", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW8Ibe0eWFse04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "670930073", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW7MTSleOcvu44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-179057168", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from AYi_AInotes.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwNulra%2Bw5zYAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from AYi_AInotes" + } + }, + { + "key": "1016912913", + "value": { + "childKeys": [ + "1729811756", + "1367972271" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWvoXc%2BZiC%2BOw4ACaAgNzdloCAkDcAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1533456738", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW%2BMXetdG0l%2B44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "1981223732", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from kuba_odars90594.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAgL6pr8uw%2FjEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from kuba_odars90594" + } + }, + { + "key": "1367972271", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWvoXc%2BZiC%2BOw4ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "821844015", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from ocdlwamh26049.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwLXhk7jbyzgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from ocdlwamh26049" + } + }, + { + "key": "-1471948948", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW%2FITVxaPDru44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "844589290", + "value": { + "childKeys": [ + "160677553", + "-400082699" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW2MHQ%2BfG0vu04ACaOgKnRzKmH6SUAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-873721116", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWgIe5lczAh%2B44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "469960338", + "value": { + "confirmation": "Thanks. You’ll see fewer reposts from Lovvy222.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQQpHCaAwNDxz8DSqzUAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer reposts from Lovvy222" + } + }, + { + "key": "1947067956", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from chaozuoye.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwKfNjvrg%2FCEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from chaozuoye" + } + }, + { + "key": "317807509", + "value": { + "childKeys": [ + "292264311", + "-791575242" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWtsHd2beAsO04ACaGwNHBwZf8nSkAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-791575242", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWtsHd2beAsO04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "1397293595", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWpoay5f6wke44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-1539936326", + "value": { + "childKeys": [ + "35557765", + "-2100982973" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWzIfc5eSHmu44ACbMooCiFwAWgKD2pxMA", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-1949708787", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW2sfS5cCMxu04ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-204301959", + "value": { + "childKeys": [ + "-1475394653", + "1374059365" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWmofQma2vtO44ACaAgNWN28rPmDMAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "40128143", + "value": { + "childKeys": [ + "-1126599733", + "-873721116" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWgIe5lczAh%2B44ACaAgL%2BRrO6z2h0AFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "247788539", + "value": { + "childKeys": [ + "-1950792924", + "1067893984" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwWqsLe0cOCkOw4ACaCwNHlgsSmnzgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "626826468", + "value": { + "childKeys": [ + "469960338", + "1406832127" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW5oDb3amqze44ACaAwN6luer5sjgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "1870844679", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from Bishu9968.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAkvuqCgAWgKD2pxMA", + "hasUndoAction": true, + "prompt": "Show fewer posts from Bishu9968" + } + }, + { + "key": "1406832127", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwW5oDb3amqze44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "-758581345", + "value": { + "childKeys": [ + "1981223732", + "-2068151666" + ], + "clientEventInfo": { + "action": "click", + "element": "feedback_dontlike" + }, + "confirmation": "Thanks. X will use this to make your timeline better.", + "feedbackType": "DontLike", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=DontLike\u0026action_metadata=SSwW0IHcxdSv%2Buw4ACaAgL6pr8uw%2FjEAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "icon": "Frown", + "prompt": "Not interested in this post" + } + }, + { + "key": "-2007953475", + "value": { + "clientEventInfo": { + "action": "click", + "element": "feedback_notrelevant" + }, + "confirmation": "Thanks. You’ll see fewer posts like this.", + "feedbackType": "NotRelevant", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=NotRelevant\u0026action_metadata=SRwWwsLQianFx%2B44ABaAoPanEwA%3D", + "hasUndoAction": true, + "prompt": "This post isn’t relevant" + } + }, + { + "key": "121291358", + "value": { + "confirmation": "Thanks. You’ll see fewer posts from fhhhggf8799.", + "feedbackType": "SeeFewer", + "feedbackUrl": "/2/timeline/feedback.json?feedback_type=SeeFewer\u0026action_metadata=JQIpHCaAwLXZ%2FemQzTgAFoCg9qcTAA%3D%3D", + "hasUndoAction": true, + "prompt": "Show fewer posts from fhhhggf8799" + } + } + ] + } + } + } + } +} \ No newline at end of file diff --git "a/\345\261\217\350\224\275\350\275\254\346\216\250.md" "b/\345\261\217\350\224\275\350\275\254\346\216\250.md" new file mode 100644 index 000000000..5b4402dbf --- /dev/null +++ "b/\345\261\217\350\224\275\350\275\254\346\216\250.md" @@ -0,0 +1,140 @@ +// ==UserScript== +// @name Hide Reposts on Twitter/X +// @name:ar تويتر/X إخفاء المشاركات التي أعيد تغريدها +// @name:bg Twitter/X скрийте ретуирани публикации +// @name:cs Twitter/X skrýt příspěvky retweeted +// @name:da Twitter/X Hide Retweeted Posts +// @name:de Twitter/X verstecken retweetete Beiträge +// @name:el Twitter/x Απόκρυψη αναστολών +// @name:en Twitter/X Hide retweeted posts +// @name:eo Twitter/x Kaŝi retweetitajn afiŝojn +// @name:es Twitter/x Ocultar publicaciones retuiteadas +// @name:fi Twitter/x piilota uudelleentwiitatut viestit +// @name:fr Twitter / x Hide Retweeted Posts +// @name:fr-CA Twitter / x Hide Retweeted Posts +// @name:he טוויטר/x הסתר פוסטים עם ציוץ מחדש +// @name:hr Twitter/X sakrij retweet post +// @name:hu A Twitter/X elrejti a retweetelt hozzászólásokat +// @name:id Twitter/x Sembunyikan posting retweeted +// @name:it Post di twitter/x nascondi retweet +// @name:ja Twitter/Xリツイートされた投稿を非表示にします +// @name:ka Twitter/x დამალვა ხელახლა გამოაქვეყნა შეტყობინებები +// @name:ko Twitter/x는 리트 윗 된 게시물을 숨 깁니다 +// @name:nb Twitter/x Skjul retweetet innlegg +// @name:nl Twitter/x verbergen geretweet berichten +// @name:pl Twitter/X ukryj posty z retweetowanym +// @name:pt-BR Twitter/x Hide Postagens Retweetadas +// @name:ro Twitter/x ascunde postări retweeted +// @name:ru Twitter/x скрыть ретвитические сообщения +// @name:sk Twitter/x skryť retweetované príspevky +// @name:sr Твиттер / к Хиде Ретвеетед Постс +// @name:sv Twitter/X dölj retweetade inlägg +// @name:th Twitter/X ซ่อนโพสต์รีทวีต +// @name:tr Twitter/x Retweeted gönderileri gizle +// @name:ug Twitter / X قايتا ئەۋەتىلگەن يازمىلارنى يوشۇرۇش +// @name:uk Twitter/X Сховати ретвітні публікації +// @name:vi Twitter/x ẩn các bài viết chuyển tiếp +// @name:zh Twitter/X 隐藏转发的帖子 +// @name:zh-CN Twitter/X 隐藏转发的帖子 +// @name:zh-HK Twitter/X 隱藏轉發的帖子 +// @name:zh-SG Twitter/X 隐藏转发的帖子 +// @name:zh-TW Twitter/X 隱藏轉發的帖子 +// @description Automatically hide forwarded content and hide forwarded content when first loaded +// @description:ar إخفاء المحتوى المعاد تلقائيًا وإخفاء المحتوى المعاد توجيهه عند التحميل الأول لإزالة الإعلانات المزعجة +// @description:bg Автоматично скрийте препратено съдържание и скривано съдържание при първо зареждане, за да премахнете досадни реклами +// @description:cs Automaticky skrýt předávaný obsah a skrýt přeposlání obsahu při prvním načítání, aby se odstranily nepříjemné reklamy +// @description:da Skjul automatisk videresendt indhold og skjul videresendt indhold på første indlæsning for at fjerne irriterende annoncer +// @description:de Automatisch ausblenden Sie weitergeleitete Inhalte aus und ausblenden Sie weitergeleitete Inhalte beim ersten Laden, um nervige Anzeigen zu entfernen +// @description:el Αυτόματα απόκρυψη περιεχομένου προώθησης και απόκρυψη περιεχομένου προώθησης κατά την πρώτη φόρτωση για να καταργήσετε ενοχλητικές διαφημίσεις +// @description:en Automatically hide forwarded content and hide forwarded content on first loading to remove annoying ads +// @description:eo Aŭtomate kaŝi plusenditan enhavon kaj kaŝi plusenditan enhavon sur unua ŝarĝo por forigi ĝenajn reklamojn +// @description:es Ocultar automáticamente el contenido reenviado y ocultar el contenido reenviado en la primera carga para eliminar anuncios molestos +// @description:fi Piilota automaattisesti edelleenlähetetty sisältö ja piilota edelleenlähetetty sisältö ensimmäisessä lataamisessa ärsyttävien mainosten poistamiseksi +// @description:fr Masquer automatiquement le contenu transféré et masquer le contenu transféré lors du premier chargement pour supprimer les annonces ennuyeuses +// @description:fr-CA Masquer automatiquement le contenu transféré et masquer le contenu transféré lors du premier chargement pour supprimer les annonces ennuyeuses +// @description:he הסתיר אוטומטית תוכן מועבר והסתיר תוכן מועבר בטעינה ראשונה כדי להסיר מודעות מעצבנות +// @description:hr Automatski sakriti prosljeđeni sadržaj i sakriti prosljeđeni sadržaj na prvo učitavanje kako biste uklonili dosadne oglase +// @description:hu Automatikusan elrejtse a továbbított tartalmat, és elrejtse a továbbított tartalmat az első betöltéskor, hogy eltávolítsa a bosszantó hirdetéseket +// @description:id Secara otomatis menyembunyikan konten yang diteruskan dan sembunyikan konten yang diteruskan pada pemuatan terlebih dahulu untuk menghapus iklan yang mengganggu +// @description:it Nascondi automaticamente il contenuto inoltrato e nascondi il contenuto inoltrato al primo caricamento per rimuovere gli annunci fastidiosi +// @description:ja 転送されたコンテンツを自動的に非表示にし、最初のロードで転送されたコンテンツを非表示にして迷惑な広告を削除する +// @description:ka ავტომატურად მალავს გადაგზავნილ შინაარსს და დამალვა გადაგზავნილი შინაარსი პირველ დატვირთვით, რომ ამოიღოთ შემაშფოთებელი რეკლამები +// @description:ko 성가신 광고를 제거하기 위해 첫 번째로드시 전달 된 컨텐츠를 자동으로 숨기고 전달 된 컨텐츠를 숨 깁니다. +// @description:nb Skjul skjuler videresendt innhold og skjul videresendt innhold ved første lasting for å fjerne irriterende annonser +// @description:nl Verberg automatisch doorgestuurde inhoud en verberg door doorgestuurde inhoud bij het eerste laden om vervelende advertenties te verwijderen +// @description:pl Automatycznie ukryj przekazaną zawartość i ukryj przekazaną zawartość przy pierwszym ładowaniu, aby usunąć irytujące reklamy +// @description:pt-BR Ocultar automaticamente o conteúdo encaminhado e ocultar o conteúdo encaminhado no primeiro carregamento para remover anúncios irritantes +// @description:ro Ascundeți automat conținutul redirecționat și ascundeți conținutul redirecționat la prima încărcare pentru a elimina reclame enervante +// @description:ru Автоматически спрятать контент и спрятаться с перенаправленным контентом при первой загрузке, чтобы удалить раздражающие объявления +// @description:sk Automaticky skryte preposlaný obsah a skryte preposlaný obsah pri prvom načítaní, aby ste odstránili nepríjemné reklamy +// @description:sr Аутоматски сакријте садржај за прослеђивање и сакријте садржај у првом оптерећењу да бисте уклонили досадне огласе +// @description:sv Göm automatiskt vidarebefordrat innehåll och dölj vidarebefordrat innehåll vid första lastning för att ta bort irriterande annonser +// @description:th ซ่อนเนื้อหาที่ส่งต่อโดยอัตโนมัติและซ่อนเนื้อหาที่ส่งต่อไว้ในการโหลดครั้งแรกเพื่อลบโฆษณาที่น่ารำคาญ +// @description:tr İşten iletilen içeriği otomatik olarak gizleyin ve can sıkıcı reklamları kaldırmak için ilk yüklemede yönlendirilmiş içeriği gizle +// @description:ug ئاپتوماتىك ھالدا يوللانغان مەزمۇنلارنى ئاپتوماتىك يوشۇرۇپ, ئالدى بىلەن بىزار بولغان ئېلانلارنى بىزار قىلىدىغان ئېلانلارنى چىقىرىپ تاشلاڭ +// @description:uk Автоматично приховати пересищений вміст і приховати вміст пересилання при першому завантаженні, щоб видалити дратівливі оголошення +// @description:vi Tự động ẩn nội dung được chuyển tiếp và ẩn nội dung được chuyển tiếp khi tải đầu tiên để xóa quảng cáo gây phiền nhiễu +// @description:zh 自动隐藏转发转发内容,并且在首次加载时隐藏转发内容,移除烦人的广告 +// @description:zh-CN 自动隐藏转发转发内容,并且在首次加载时隐藏转发内容,移除烦人的广告 +// @description:zh-HK 自動隱藏轉發轉發內容,並且在首次加載時隱藏轉發內容,移除煩人的廣告 +// @description:zh-SG 自动隐藏转发转发内容,并且在首次加载时隐藏转发内容,移除烦人的广告 +// @description:zh-TW 自動隱藏轉發轉發內容,並且在首次加載時隱藏轉發內容,移除煩人的廣告 +// @author Owyn,人民的勤务员 +// @namespace https://github.com/ChinaGodMan/UserScripts +// @supportURL https://github.com/ChinaGodMan/UserScripts/issues +// @homepageURL https://github.com/ChinaGodMan/UserScripts +// @license MIT +// @icon https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/scriptsIcon/x.svg +// @compatible chrome +// @compatible firefox +// @compatible edge +// @compatible opera +// @compatible safari +// @compatible kiwi +// @compatible qq +// @compatible via +// @compatible brave +// @grant GM_registerMenuCommand +// @noframes +// @run-at document-end +// @sandbox JavaScript +// @match https://x.com/* +// @match https://twitter.com/* +// @version 2025.03.11.0654 +// @created 2025-03-11 06:54:32 +// @modified 2025-03-11 06:54:32 +// @downloadURL https://update.greasyfork.org/scripts/529450/Hide%20Reposts%20on%20TwitterX.user.js +// @updateURL https://update.greasyfork.org/scripts/529450/Hide%20Reposts%20on%20TwitterX.meta.js +// ==/UserScript== +/** + * File: twitter-hide-reposts.user.js + * Project: UserScripts + * File Created: 2025/03/11,Tuesday 06:55:14 + * Author: 人民的勤务员@ChinaGodMan (china.qinwuyuan@gmail.com) + * ----- + * Last Modified: 2025/03/11,Tuesday 08:28:39 + * Modified By: 人民的勤务员@ChinaGodMan (china.qinwuyuan@gmail.com) + * ----- + * License: MIT License + * Copyright © 2024 - 2025 ChinaGodMan,Inc + */ +'use strict' + +const tweetCSS = '[data-testid="cellInnerDiv"]' +const repostCSS = '[data-testid="socialContext"]' +const alreadyHiddenCSS = '[style*="display: none;"]' + +function hideReposts() { + var n = document.querySelectorAll(tweetCSS + ':has(' + repostCSS + '):not(' + alreadyHiddenCSS + ')') + for (let i = 0; i < n.length; i++) { + n[i].style.display = 'none' + console.debug('hid a repost') + } + setTimeout(hideReposts, 500) +} +hideReposts() +window.addEventListener('scroll', hideReposts) + +if (typeof GM_registerMenuCommand !== 'undefined') { + GM_registerMenuCommand('Disable (this once for this page)', () => window.removeEventListener('scroll', hideReposts), 'h') +}