-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsg.example
More file actions
59 lines (57 loc) · 2.93 KB
/
msg.example
File metadata and controls
59 lines (57 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
// 构建消息对象
// To
var message = {
nickname: nickName,
time: "xxx-xx-xx",
source: "via",
content: contentText,
hasImage: Math.random() < 1 / 3, // 是否有图片
hasLinkIcon: Math.random() < 1 / 3 // 是否有链接图标
};
// From
{
"created_at": "Mon Dec 16 10:56:15 +0000 2024",
"id": "1MyaVjZNyIg",
"rawid": 273604701,
"text": "已经95斤了,今晚开始高低要运动了",
"source": "<a href=\"https://fanfou.com/%7EMrTbRkAwu3o\" target=\"_blank\">泡饭</a>",
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"favorited": false,
"in_reply_to_screen_name": "",
"is_self": false,
"location": "江苏 苏州",
"user": {
"id": "SherryYuan",
"name": "芳芳加加油",
"screen_name": "芳芳加加油",
"unique_id": "~WPhATCtg-QI",
"location": "江苏 苏州",
"gender": "女",
"birthday": "",
"description": "Live and let live. Agree or disagree.",
"profile_image_url": "https://s3.meituan.net/v1/mss_3d027b52ec5a4d589e68050845611e68/avatar/s0/00/j4/yp.jpg?1550324005",
"profile_image_url_large": "https://s3.meituan.net/v1/mss_3d027b52ec5a4d589e68050845611e68/avatar/l0/00/j4/yp.jpg?1550324005",
"url": "http://i.mtime.com/SherryYuan/",
"protected": true,
"followers_count": 1346,
"friends_count": 550,
"favourites_count": 527,
"statuses_count": 45157,
"photo_count": 3148,
"following": true,
"notifications": true,
"created_at": "Mon Apr 30 13:39:52 +0000 2012",
"utc_offset": 28800,
"profile_background_color": "#232323",
"profile_text_color": "#272B2F",
"profile_link_color": "#24BDDF",
"profile_sidebar_fill_color": "#E6EBED",
"profile_sidebar_border_color": "#FFFFFF",
"profile_background_image_url": "https://s3.meituan.net/v1/mss_3d027b52ec5a4d589e68050845611e68/avatar/b0/00/j4/yp_1551414431.jpg?1551414431",
"profile_background_tile": true
}
}
*/