提交修改
25
.dockerignore
Normal file
@@ -0,0 +1,25 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
.DS_Store
|
||||
coverage
|
||||
*.local
|
||||
|
||||
dist
|
||||
node_modules
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
docs
|
||||
node
|
||||
19
.eslintrc.cjs
Normal file
@@ -0,0 +1,19 @@
|
||||
/* eslint-env node */
|
||||
require('@rushstack/eslint-patch/modern-module-resolution');
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
'extends': [
|
||||
'plugin:vue/vue3-essential',
|
||||
'eslint:recommended',
|
||||
'@vue/eslint-config-typescript',
|
||||
'@vue/eslint-config-prettier/skip-formatting'
|
||||
],
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest'
|
||||
},
|
||||
rules: {
|
||||
'vue/multi-word-component-names': 0
|
||||
},
|
||||
'ignorePatterns': ['vite.config.ts', 'mobile-select.js']
|
||||
};
|
||||
20
.github/ISSUE_TEMPLATE/功能请求---feature-request.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: 功能请求 | Feature request
|
||||
about: 创建一个功能请求 | Create a feature request
|
||||
title: 功能请求 | Feature request
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
1、描述
|
||||
请尽可能详细描述您需要的特性。
|
||||
|
||||
2、这个功能解决了什么问题?
|
||||
请尽可能详尽地说明这个需求的用例和场景
|
||||
|
||||
1. Description
|
||||
Please provide as detailed a description as possible of the features you need.
|
||||
|
||||
2. What problem does this feature solve?
|
||||
Please provide as detailed a description of the use cases and scenarios for this requirement as possible
|
||||
24
.github/ISSUE_TEMPLATE/问题报告---bug-report-.md
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
name: '问题报告 | Bug report '
|
||||
about: '创建一个问题报告 | Create a bug report '
|
||||
title: '问题报告 | Bug report '
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### 注意:请确认问题可以在浏览器的 无痕模式 下复现,而不是自己安装的其他插件或脚本导致的
|
||||
|
||||
1、描述
|
||||
在这里填写问题描述
|
||||
|
||||
2、截图
|
||||
可以直接按Ctrl + V 复制在这里(复制成功后会显示一串地址)
|
||||
|
||||
### Note: Please confirm that the problem can be reproduced in the browser's traceless mode, rather than being caused by other plugins or scripts installed by yourself
|
||||
|
||||
1. Description
|
||||
Fill in the problem description here
|
||||
|
||||
2. Screenshot
|
||||
You can directly press Ctrl+V to copy here (a string of addresses will be displayed after successful copying)
|
||||
72
.github/workflows/deploy-gitee-pages.yml
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
# 将静态内容部署到 GitHub Pages 的简易工作流程
|
||||
name: Deploy Gitee Pages
|
||||
|
||||
on:
|
||||
# 仅在推送到默认分支时运行。
|
||||
push:
|
||||
branches: [ 'master' ]
|
||||
|
||||
# 这个选项可以使你手动在 Action tab 页面触发工作流
|
||||
workflow_dispatch:
|
||||
|
||||
# 设置 GITHUB_TOKEN 的权限,以允许部署到 GitHub Pages。
|
||||
permissions:
|
||||
contents: write
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
|
||||
jobs:
|
||||
# 单次部署的工作描述
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build
|
||||
run: pnpm run build-gitee-pages
|
||||
|
||||
- name: Deploy to Github Pages
|
||||
uses: peaceiris/actions-gh-pages@v4
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./dist
|
||||
publish_branch: gitee-pages
|
||||
|
||||
- name: Sync to Gitee
|
||||
uses: wearerequired/git-mirror-action@master
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }}
|
||||
with:
|
||||
source-repo: git@github.com:zyronon/douyin.git
|
||||
destination-repo: git@gitee.com:zyronon/douyin.git
|
||||
|
||||
- name: Build Gitee Pages
|
||||
uses: yanglbme/gitee-pages-action@main
|
||||
with:
|
||||
# 注意替换为你的 Gitee 用户名
|
||||
gitee-username: zyronon
|
||||
# 注意在 Settings->Secrets 配置 GITEE_PASSWORD
|
||||
gitee-password: ${{ secrets.GITEE_PASSWORD }}
|
||||
# 注意替换为你的 Gitee 仓库,仓库名严格区分大小写,请准确填写,否则会出错
|
||||
gitee-repo: zyronon/douyin
|
||||
# 要部署的分支,默认是 master,若是其他分支,则需要指定(指定的分支必须存在)
|
||||
branch: gitee-pages
|
||||
57
.github/workflows/deploy-github-pages.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
# 将静态内容部署到 GitHub Pages 的简易工作流程
|
||||
name: Deploy Github Pages
|
||||
|
||||
on:
|
||||
# 仅在推送到默认分支时运行。
|
||||
push:
|
||||
branches: [ 'master' ]
|
||||
|
||||
# 这个选项可以使你手动在 Action tab 页面触发工作流
|
||||
workflow_dispatch:
|
||||
|
||||
# 设置 GITHUB_TOKEN 的权限,以允许部署到 GitHub Pages。
|
||||
permissions:
|
||||
contents: write
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
jobs:
|
||||
# 单次部署的工作描述
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 8
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build
|
||||
run: pnpm run build-gp-pages
|
||||
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v4
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
# Upload dist repository
|
||||
path: './dist'
|
||||
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
41
.github/workflows/docker-image-ci.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
|
||||
# 这个选项可以使你手动在 Action tab 页面触发工作流
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: get version
|
||||
id: vars
|
||||
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\/v/}
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: set up docker buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: login ghrc hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GHCR_TOKEN }}
|
||||
|
||||
- name: build and push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
platforms: linux/amd64,linux/arm64
|
||||
tags: |
|
||||
ghcr.io/${{ github.repository_owner }}/douyin-vue:${{ steps.vars.outputs.version }}
|
||||
ghcr.io/${{ github.repository_owner }}/douyin-vue:latest
|
||||
36
.github/workflows/readme.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: Translate README
|
||||
|
||||
on:
|
||||
# 这个选项可以使你手动在 Action tab 页面触发工作流
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12.x
|
||||
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages
|
||||
- name: Adding README - English
|
||||
uses: dephraiim/translate-readme@main
|
||||
with:
|
||||
LANG: en
|
||||
- name: Adding README - Japanese
|
||||
uses: dephraiim/translate-readme@main
|
||||
with:
|
||||
LANG: ja
|
||||
- name: Adding README - German
|
||||
uses: dephraiim/translate-readme@main
|
||||
with:
|
||||
LANG: de
|
||||
- name: Adding README - French
|
||||
uses: dephraiim/translate-readme@main
|
||||
with:
|
||||
LANG: fr
|
||||
- name: Adding README - Spanish
|
||||
uses: dephraiim/translate-readme@main
|
||||
with:
|
||||
LANG: es
|
||||
30
.gitignore
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
.DS_Store
|
||||
dist
|
||||
dist-ssr
|
||||
coverage
|
||||
*.local
|
||||
|
||||
/cypress/videos/
|
||||
/cypress/screenshots/
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
*.tsbuildinfo
|
||||
1
.husky/commit-msg
Normal file
@@ -0,0 +1 @@
|
||||
npx --no-install commitlint --edit $1
|
||||
1
.husky/pre-commit
Normal file
@@ -0,0 +1 @@
|
||||
npx lint-staged
|
||||
8
.prettierrc.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/prettierrc",
|
||||
"semi": false,
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true,
|
||||
"printWidth": 100,
|
||||
"trailingComma": "none"
|
||||
}
|
||||
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
# syntax = docker/dockerfile:experimental
|
||||
FROM --platform=${BUILDPLATFORM:-linux/amd64,linux/arm64} node:20-buster AS builder
|
||||
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
RUN corepack enable
|
||||
|
||||
WORKDIR /src
|
||||
COPY ./ ./
|
||||
|
||||
# RUN两次方便观察install和build, 也可以用pnpm cache and locked
|
||||
RUN pnpm install
|
||||
RUN npm run build
|
||||
|
||||
FROM --platform=${BUILDPLATFORM:-linux/amd64,linux/arm64} ghcr.io/rookie-luochao/nginx-runner:latest
|
||||
|
||||
COPY --from=builder /src/dist /app
|
||||
674
LICENSE
Normal file
@@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
16
Makefile
Normal file
@@ -0,0 +1,16 @@
|
||||
PKG = $(shell cat package.json | grep 'name' | sed -e 's/ "name": "//g' -e 's/",//g')
|
||||
VERSION = $(shell cat package.json | grep 'version' | sed -e 's/ "version": "//g' -e 's/",//g')
|
||||
|
||||
# 本地测试构建docker镜像建议删掉node_modules,node_modules存在有时会导致报错
|
||||
docker-build:
|
||||
docker build . -t $(PKG):$(VERSION)
|
||||
|
||||
# 请先创建自己的 buildx driver 实例,请看:https://juejin.cn/post/7296763284647542838
|
||||
# 显式指定可执行 docker buildx build --platform linux/amd64,linux/arm64 . -t $(PKG):$(VERSION) --push
|
||||
docker-buildx-build:
|
||||
docker buildx build --platform linux/amd64 . -t $(PKG):$(VERSION) --load
|
||||
|
||||
docker-run:
|
||||
docker run -d -p 80:80 $(PKG):$(VERSION)
|
||||
|
||||
docker-build-run: docker-build docker-run
|
||||
124
README.md
Normal file
@@ -0,0 +1,124 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="docs/README.en.md">English</a> | <a href="docs/README.es.md">Spanish</a> | <a href="docs/README.de.md">German</a> |
|
||||
<a href="docs/README.fr.md">French</a> | <a href="README.md">简体中文</a> | <a href="docs/README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
<a href="https://hellogithub.com/repository/f22d2c9ea1eb4826839084332f7519bd" target="_blank"><img src="https://abroad.hellogithub.com/v1/widgets/recommend.svg?rid=f22d2c9ea1eb4826839084332f7519bd&claim_uid=k5e4ZAqRjJEGzCW&theme=small" alt="Featured|HelloGitHub" /></a>
|
||||
</p>
|
||||
|
||||
<div align=center>
|
||||
<a href="https://trendshift.io/repositories/9068" target="_blank" class="trendshift-badge"><img src="https://trendshift.io/api/badge/repositories/9068" alt="Douyin | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
|
||||
</div>
|
||||
|
||||
`douyin-vue` 是一个模仿 `抖音|TikTok` 的移动端短视频项目。`Vue` 在移动端的"最佳实践",媲美原生 `App` 丝滑流畅的使用体验。使用了最新的 `Vue` 技术栈,基于 [`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)
|
||||
、[`Pinia`](https://pinia.vuejs.org/)实现。数据保存在项目本地,通过 [`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter) 库拦截Api 并返回本地json数据,模拟真实后端请求
|
||||
|
||||
|
||||
<div>
|
||||
<img width="150px" src='docs/imgs/1.gif' />
|
||||
<img width="150px" src='docs/imgs/2.gif' />
|
||||
<img width="150px" src='docs/imgs/3.gif' />
|
||||
<img width="150px" src='docs/imgs/4.gif' />
|
||||
<img width="150px" src='docs/imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## 在线访问
|
||||
|
||||
Github Pages: [https://dy.2study.top/](https://dy.2study.top/)
|
||||
|
||||
[//]: # (Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) )
|
||||
[//]: # (Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) )
|
||||
[//]: # (Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/))
|
||||
[//]: # (Vercel: [https://douyins.vercel.app](https://douyins.vercel.app))
|
||||
[//]: # (Android Apk: https://github.com/zyronon/douyin/releases)
|
||||
[//]: # (**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览)
|
||||
[//]: # (**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示)
|
||||
|
||||
## 链接
|
||||
|
||||
【模仿抖音系列】一:[200行代码实现类似Swiper.js的轮播组件](https://juejin.cn/post/7360512664317018146)
|
||||
【模仿抖音系列】二:[实现抖音 “视频无限滑动“效果](https://juejin.cn/post/7361614921519054883)
|
||||
【模仿抖音系列】三:[Vue 路由使用介绍以及添加转场动画](https://juejin.cn/post/7362528152777130025)
|
||||
【模仿抖音系列】四:[Vue 有条件路由缓存,就像传统新闻网站一样](https://juejin.cn/post/7365334891473240101)
|
||||
【模仿抖音系列】五:[Github Actions 部署 Pages、同步到 Gitee、翻译 README 、 打包 docker 镜像](https://juejin.cn/post/7365757742381957161)
|
||||
【模仿抖音系列】六:[使用rem、动态vh自适应移动端](https://juejin.cn/post/7374452765273538595)
|
||||
|
||||
## 运行
|
||||
注意:本项目仅适用于学习和研究,不得用于商业使用
|
||||
|
||||
### 快速部署至 Vercel
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### 部署到 Docker
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
### 本地开发
|
||||
**注意:必须 git 命令 clone 下来才能运行,下载 zip 包是无法运行的。如果 clone 速度太慢,推荐使用 gitee 地址**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
打开浏览器并访问: [http://127.0.0.1:3000](http://127.0.0.1:3000)
|
||||
|
||||
**注意:需要将浏览器切至手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M` 才能正常预览**
|
||||
|
||||
## 数据来源
|
||||
|
||||
视频来源于以下抖音网红
|
||||
|
||||
- `我是香秀 🐂🍺`: [https://v.douyin.com/iYRAPA2L/](https://v.douyin.com/iYRAPA2L/)
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`: [https://v.douyin.com/iYRA56de/](https://v.douyin.com/iYRA56de/)
|
||||
- `条子`: [https://v.douyin.com/iYRAaqjr/](https://v.douyin.com/iYRAaqjr/)
|
||||
- `达莎 Digi`:[https://v.douyin.com/iYRA6rwT/](https://v.douyin.com/iYRA6rwT/)
|
||||
- `小橙子`: [https://v.douyin.com/iYRAnudw/](https://v.douyin.com/iYRAnudw/)
|
||||
- `南恬`: [https://v.douyin.com/iYRAbKm3/](https://v.douyin.com/iYRAbKm3/)
|
||||
- `小霸宠牛排 🥩`:[https://v.douyin.com/iYRSosVB/](https://v.douyin.com/iYRSosVB/)
|
||||
- `奶茶妹 ◕🌱`: [https://v.douyin.com/iYRACKhP/](https://v.douyin.com/iYRACKhP/)
|
||||
- `我才是岚岚`: [https://v.douyin.com/iYRAQM1C/](https://v.douyin.com/iYRAQM1C/)
|
||||
- `周憬艺 ziran`: [https://v.douyin.com/iYRAQs4h/](https://v.douyin.com/iYRAQs4h/)
|
||||
- `刘思瑶 nice`: [https://v.douyin.com/iYRAaERn/](https://v.douyin.com/iYRAaERn/)
|
||||
- `彭十六 elf`: [https://v.douyin.com/iYRAHrVG/](https://v.douyin.com/iYRAHrVG/)
|
||||
- `李子柒`: [https://v.douyin.com/iYRA5B88/](https://v.douyin.com/iYRA5B88/)
|
||||
|
||||
图片来自于小红书公开笔记
|
||||
|
||||
以上内容均是互联网公开信息
|
||||
|
||||
|
||||
## 功能与建议
|
||||
|
||||
目前项目处于开发初期,新功能正在持续添加中,如果你对软件有任何功能与建议,欢迎在 `Issues` 中提出
|
||||
如果你也喜欢本软件的设计思想,欢迎提交 `PR`,非常感谢你对我们的支持!
|
||||
|
||||
## 联系我
|
||||
|
||||
您可以联系我的邮箱 <a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
> 分享我其他开源项目:
|
||||
>
|
||||
>_[**Typing Word
|
||||
** - 可在网页上使用的背单词软件~](https://github.com/zyronon/typing-word) <img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**Web Scripts
|
||||
** - 一些好用的油猴脚本~](https://github.com/zyronon/web-scripts) <img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## 许可协议
|
||||
|
||||
[GPL](LICENSE)
|
||||
3
commitlint.config.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
module.exports = {
|
||||
extends: ['@commitlint/config-conventional']
|
||||
}
|
||||
12
docs/NOTE.md
Normal file
@@ -0,0 +1,12 @@
|
||||
## 核心技术拆解(TODO)
|
||||
|
||||
- 手机端抓包
|
||||
- 首页无限滚动
|
||||
- me页面滚动逻辑
|
||||
- 通话进入和挂起动画
|
||||
|
||||
# TODO
|
||||
|
||||
- 双指缩放
|
||||
- AutoInput组件,在真机上无法输入
|
||||
- 真机上100vh显示异常的问题
|
||||
128
docs/README.de.md
Normal file
@@ -0,0 +1,128 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="README.en.md">English</a> | <a href="README.es.md">Spanish</a> | <a href="README.de.md">German</a> |
|
||||
<a href="README.fr.md">French</a> | <a href="../README.md">简体中文</a> | <a href="README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
</p>
|
||||
|
||||
`douyin-vue`ist eine Parodie`抖音|TikTok`mobiles Kurzvideoprojekt.`Vue`„Best Practices“ auf der mobilen Seite, vergleichbar mit Native`App`Seidiges und geschmeidiges Erlebnis. Habe das Neueste verwendet`Vue`Technologie-Stack, basierend auf[`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)、[`Pinia`](https://pinia.vuejs.org/)erreichen. Die Daten werden lokal im Projekt gespeichert[`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter)Die Bibliothek fängt die API ab und gibt lokale JSON-Daten zurück, um echte Backend-Anfragen zu simulieren.
|
||||
|
||||
<div>
|
||||
<img width="150px" src='imgs/1.gif' />
|
||||
<img width="150px" src='imgs/2.gif' />
|
||||
<img width="150px" src='imgs/3.gif' />
|
||||
<img width="150px" src='imgs/4.gif' />
|
||||
<img width="150px" src='imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## Online-Zugang
|
||||
|
||||
[//]: # "Gitee Pages: [https://zyronon.gitee.io/douyin/](https://zyronon.gitee.io/douyin/)(中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "注意:Gitee Pages现在无法更新,代码不是最新的。如果你能翻墙推荐访问下面地址 "
|
||||
|
||||
Github-Seiten:<https://dy.ttentau.top/>
|
||||
|
||||
[//]: # "Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) "
|
||||
|
||||
[//]: # "Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/)"
|
||||
|
||||
[//]: # "Vercel: [https://douyins.vercel.app](https://douyins.vercel.app)"
|
||||
|
||||
[//]: # "Android Apk: https://github.com/zyronon/douyin/releases"
|
||||
|
||||
[//]: # "**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览"
|
||||
|
||||
[//]: # "**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示"
|
||||
|
||||
## Verknüpfung
|
||||
|
||||
\[Imitation Douyin-Serie] 1:[200 Codezeilen zur Implementierung einer Karussellkomponente ähnlich Swiper.js](https://juejin.cn/post/7360512664317018146)
|
||||
\[Imitation Douyin-Serie] 2:[Verwirklichen Sie den „unendlich gleitenden Video“-Effekt auf Douyin](https://juejin.cn/post/7361614921519054883)
|
||||
\[Imitation Douyin-Serie] Drei:[Einführung in die Verwendung des Vue-Routings und das Hinzufügen von Übergangsanimationen](https://juejin.cn/post/7362528152777130025)
|
||||
\[Imitation Douyin-Serie] Vier:[Bedingtes Routen-Caching von Vue, genau wie bei herkömmlichen Nachrichtenseiten](https://juejin.cn/post/7365334891473240101)
|
||||
\[Imitation Douyin-Serie] Fünf:[Github-Aktionen stellen Seiten bereit, synchronisieren mit Gitee, übersetzen README, packen Docker-Image](https://juejin.cn/post/7365757742381957161)
|
||||
|
||||
## laufen
|
||||
|
||||
Hinweis: Dieses Projekt ist nur für Studien- und Forschungszwecke geeignet, nicht für die kommerzielle Nutzung
|
||||
|
||||
### Schnelle Bereitstellung in Vercel
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### Auf Docker bereitstellen
|
||||
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
|
||||
### lokale Entwicklung
|
||||
|
||||
**Hinweis: Der Git-Befehl muss geklont werden, damit er ausgeführt werden kann. Das Herunterladen des ZIP-Pakets ist nicht möglich. Wenn die Klongeschwindigkeit zu langsam ist, wird empfohlen, die Gitee-Adresse zu verwenden**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Öffnen Sie Ihren Browser und besuchen Sie:<http://127.0.0.1:3000>
|
||||
|
||||
**Hinweis: Sie müssen den Browser in den Mobilmodus schalten, indem Sie zuerst drücken`F12`Um die Konsole aufzurufen, drücken Sie`Ctrl+Shift+M`um eine normale Vorschau anzuzeigen**
|
||||
|
||||
## Datenquellen
|
||||
|
||||
Das Video stammt von folgenden Douyin-Prominenten
|
||||
|
||||
- `我是香秀 🐂🍺`:<https://v.douyin.com/iYRAPA2L/>
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`:<https://v.douyin.com/iYRA56de/>
|
||||
- `条子`:<https://v.douyin.com/iYRAaqjr/>
|
||||
- `达莎 Digi`:<https://v.douyin.com/iYRA6rwT/>
|
||||
- `小橙子`:<https://v.douyin.com/iYRAnudw/>
|
||||
- `南恬`:<https://v.douyin.com/iYRAbKm3/>
|
||||
- `小霸宠牛排 🥩`:<https://v.douyin.com/iYRSosVB/>
|
||||
- `奶茶妹 ◕🌱`:<https://v.douyin.com/iYRACKhP/>
|
||||
- `我才是岚岚`:<https://v.douyin.com/iYRAQM1C/>
|
||||
- `周憬艺 ziran`:<https://v.douyin.com/iYRAQs4h/>
|
||||
- `刘思瑶 nice`:<https://v.douyin.com/iYRAaERn/>
|
||||
- `彭十六 elf`:<https://v.douyin.com/iYRAHrVG/>
|
||||
- `李子柒`:<https://v.douyin.com/iYRA5B88/>
|
||||
|
||||
Bild aus den öffentlichen Notizen von Xiaohongshu
|
||||
|
||||
Bei den oben genannten Inhalten handelt es sich um alle öffentlichen Informationen im Internet
|
||||
|
||||
## Funktionen und Vorschläge
|
||||
|
||||
Das Projekt befindet sich derzeit in einem frühen Entwicklungsstadium und es werden kontinuierlich neue Funktionen hinzugefügt. Wenn Sie Funktionen oder Vorschläge für die Software haben, können Sie sich gerne an uns wenden.`Issues`aufgewachsen in
|
||||
Wenn Ihnen die Designideen dieser Software auch gefallen, reichen Sie sie bitte ein`PR`, Vielen Dank für deine Unterstützung!
|
||||
|
||||
## kontaktiere mich
|
||||
|
||||
Sie können meine E-Mail kontaktieren<a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
|
||||
> Teilen Sie meine anderen Open-Source-Projekte:
|
||||
>
|
||||
> _[**Wort eingeben**- Software zum Auswendiglernen von Vokabeln, die im Internet verwendet werden kann](https://github.com/zyronon/typing-word)<img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**Webskripte**- Einige nützliche Grease Monkey-Skripte ~](https://github.com/zyronon/web-scripts)<img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## Vereinbarung
|
||||
|
||||
[GPL](../LICENSE)
|
||||
128
docs/README.en.md
Normal file
@@ -0,0 +1,128 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="README.en.md">English</a> | <a href="README.es.md">Spanish</a> | <a href="README.de.md">German</a> |
|
||||
<a href="README.fr.md">French</a> | <a href="../README.md">简体中文</a> | <a href="README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
</p>
|
||||
|
||||
`douyin-vue`is a parody`抖音|TikTok`mobile short video project.`Vue`"Best practices" on the mobile side, comparable to native`App` 丝滑流畅的使用体验。使用了最新的 `Vue`technology stack, based on[`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)、[`Pinia`](https://pinia.vuejs.org/)accomplish. The data is saved locally in the project through[`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter)The library intercepts the API and returns local json data to simulate real backend requests.
|
||||
|
||||
<div>
|
||||
<img width="150px" src='docs/imgs/1.gif' />
|
||||
<img width="150px" src='docs/imgs/2.gif' />
|
||||
<img width="150px" src='docs/imgs/3.gif' />
|
||||
<img width="150px" src='docs/imgs/4.gif' />
|
||||
<img width="150px" src='docs/imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## Online access
|
||||
|
||||
[//]: # "Gitee Pages: [https://zyronon.gitee.io/douyin/](https://zyronon.gitee.io/douyin/)(中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "注意:Gitee Pages现在无法更新,代码不是最新的。如果你能翻墙推荐访问下面地址 "
|
||||
|
||||
Github Pages:<https://dy.ttentau.top/>
|
||||
|
||||
[//]: # "Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) "
|
||||
|
||||
[//]: # "Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/)"
|
||||
|
||||
[//]: # "Vercel: [https://douyins.vercel.app](https://douyins.vercel.app)"
|
||||
|
||||
[//]: # "Android Apk: https://github.com/zyronon/douyin/releases"
|
||||
|
||||
[//]: # "**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览"
|
||||
|
||||
[//]: # "**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示"
|
||||
|
||||
## Link
|
||||
|
||||
\[Imitation Douyin Series] 1:[200 lines of code to implement a carousel component similar to Swiper.js](https://juejin.cn/post/7360512664317018146)
|
||||
\[Imitation Douyin Series] 2:[Realize the "infinite sliding video" effect on Douyin](https://juejin.cn/post/7361614921519054883)
|
||||
\[Imitation Douyin Series] Three:[Introduction to using Vue routing and adding transition animations](https://juejin.cn/post/7362528152777130025)
|
||||
\[Imitation Douyin Series] Four:[Vue conditional route caching, just like traditional news sites](https://juejin.cn/post/7365334891473240101)
|
||||
\[Imitation Douyin Series] Five:[Github Actions deploy Pages, synchronize to Gitee, translate README, package docker image](https://juejin.cn/post/7365757742381957161)
|
||||
|
||||
## run
|
||||
|
||||
Note: This project is only suitable for study and research, not for commercial use
|
||||
|
||||
### Quickly deploy to Vercel
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### Deploy to Docker
|
||||
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
|
||||
### local development
|
||||
|
||||
**Note: The git command must be cloned to run. Downloading the zip package cannot run. If the clone speed is too slow, it is recommended to use the gitee address**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Open your browser and visit:<http://127.0.0.1:3000>
|
||||
|
||||
**注意:需要将浏览器切至手机模式,先按 `F12`To bring up the console, press`Ctrl+Shift+M`to preview normally**
|
||||
|
||||
## Data Sources
|
||||
|
||||
The video comes from the following Douyin celebrities
|
||||
|
||||
- `我是香秀 🐂🍺`:<https://v.douyin.com/iYRAPA2L/>
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`:<https://v.douyin.com/iYRA56de/>
|
||||
- `条子`:<https://v.douyin.com/iYRAaqjr/>
|
||||
- `达莎 Digi`:<https://v.douyin.com/iYRA6rwT/>
|
||||
- `小橙子`:<https://v.douyin.com/iYRAnudw/>
|
||||
- `南恬`:<https://v.douyin.com/iYRAbKm3/>
|
||||
- `小霸宠牛排 🥩`:<https://v.douyin.com/iYRSosVB/>
|
||||
- `奶茶妹 ◕🌱`:<https://v.douyin.com/iYRACKhP/>
|
||||
- `我才是岚岚`:<https://v.douyin.com/iYRAQM1C/>
|
||||
- `周憬艺 ziran`:<https://v.douyin.com/iYRAQs4h/>
|
||||
- `刘思瑶 nice`:<https://v.douyin.com/iYRAaERn/>
|
||||
- `彭十六 elf`:<https://v.douyin.com/iYRAHrVG/>
|
||||
- `李子柒`:<https://v.douyin.com/iYRA5B88/>
|
||||
|
||||
Picture from Xiaohongshu public notes
|
||||
|
||||
The above content is all public information on the Internet
|
||||
|
||||
## Features and suggestions
|
||||
|
||||
The project is currently in the early stages of development and new features are being added continuously. If you have any features or suggestions for the software, please feel free to contact us.`Issues`raised in
|
||||
If you also like the design ideas of this software, please submit it`PR`, thank you very much for your support!
|
||||
|
||||
## contact me
|
||||
|
||||
You can contact my email<a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
|
||||
> Share my other open source projects:
|
||||
>
|
||||
> _[**Typing Word**- Vocabulary memorization software that can be used on the web~](https://github.com/zyronon/typing-word)<img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**Web Scripts**- Some useful Grease Monkey scripts~](https://github.com/zyronon/web-scripts)<img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## agreement
|
||||
|
||||
[GPL](../LICENSE)
|
||||
130
docs/README.es.md
Normal file
@@ -0,0 +1,130 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="README.en.md">English</a> | <a href="README.es.md">Spanish</a> | <a href="README.de.md">German</a> |
|
||||
<a href="README.fr.md">French</a> | <a href="../README.md">简体中文</a> | <a href="README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
`douyin-vue`es una parodia`抖音|TikTok`Proyecto de vídeo corto móvil.`Vue`"Mejores prácticas" en el lado móvil, comparables a las nativas`App`Experiencia sedosa y suave. Usado lo último`Vue`pila de tecnología, basada en[`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)、[`Pinia`](https://pinia.vuejs.org/)lograr. Los datos se guardan localmente en el proyecto a través de[`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter)La biblioteca intercepta la API y devuelve datos json locales para simular solicitudes de backend reales.
|
||||
|
||||
<div>
|
||||
<img width="150px" src='docs/imgs/1.gif' />
|
||||
<img width="150px" src='docs/imgs/2.gif' />
|
||||
<img width="150px" src='docs/imgs/3.gif' />
|
||||
<img width="150px" src='docs/imgs/4.gif' />
|
||||
<img width="150px" src='docs/imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## Acceso en linea
|
||||
|
||||
[//]: # "Gitee Pages: [https://zyronon.gitee.io/douyin/](https://zyronon.gitee.io/douyin/)(中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "注意:Gitee Pages现在无法更新,代码不是最新的。如果你能翻墙推荐访问下面地址 "
|
||||
|
||||
Páginas de Github:<https://dy.ttentau.top/>
|
||||
|
||||
[//]: # "Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) "
|
||||
|
||||
[//]: # "Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/)"
|
||||
|
||||
[//]: # "Vercel: [https://douyins.vercel.app](https://douyins.vercel.app)"
|
||||
|
||||
[//]: # "Android Apk: https://github.com/zyronon/douyin/releases"
|
||||
|
||||
[//]: # "**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览"
|
||||
|
||||
[//]: # "**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示"
|
||||
|
||||
## Enlace
|
||||
|
||||
\[Serie Imitación Douyin] 1:[200 líneas de código para implementar un componente carrusel similar a Swiper.js](https://juejin.cn/post/7360512664317018146)
|
||||
\[Serie Imitación Douyin] 2:[Realice el efecto de "vídeo deslizante infinito" en Douyin](https://juejin.cn/post/7361614921519054883)
|
||||
\[Serie Imitación Douyin] Tres:[Vue 路由使用介绍以及添加转场动画](https://juejin.cn/post/7362528152777130025)
|
||||
\[Serie Imitación Douyin] Cuatro:[Almacenamiento en caché de rutas condicionales de Vue, al igual que los sitios de noticias tradicionales](https://juejin.cn/post/7365334891473240101)
|
||||
\[Serie Imitación Douyin] Cinco:[Github Actions implementa páginas, sincroniza con Gitee, traduce README, empaqueta la imagen de la ventana acoplable](https://juejin.cn/post/7365757742381957161)
|
||||
|
||||
## correr
|
||||
|
||||
Nota: Este proyecto sólo es apto para estudio e investigación, no para uso comercial.
|
||||
|
||||
### Implemente rápidamente en Vercel
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### Implementar en Docker
|
||||
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
|
||||
### desarrollo local
|
||||
|
||||
**Nota: El comando git debe clonarse para ejecutarse. No se puede ejecutar la descarga del paquete zip. Si la velocidad de clonación es demasiado lenta, se recomienda utilizar la dirección del albergue**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Abra su navegador y visite:<http://127.0.0.1:3000>
|
||||
|
||||
**Nota: Debe cambiar el navegador al modo móvil, primero presione`F12`Para abrir la consola, presione`Ctrl+Shift+M`para obtener una vista previa normalmente**
|
||||
|
||||
## Fuentes de datos
|
||||
|
||||
El video proviene de las siguientes celebridades de Douyin.
|
||||
|
||||
- `我是香秀 🐂🍺`:<https://v.douyin.com/iYRAPA2L/>
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`:<https://v.douyin.com/iYRA56de/>
|
||||
- `条子`:<https://v.douyin.com/iYRAaqjr/>
|
||||
- `达莎 Digi`:<https://v.douyin.com/iYRA6rwT/>
|
||||
- `小橙子`:<https://v.douyin.com/iYRAnudw/>
|
||||
- `南恬`:<https://v.douyin.com/iYRAbKm3/>
|
||||
- `小霸宠牛排 🥩`:<https://v.douyin.com/iYRSosVB/>
|
||||
- `奶茶妹 ◕🌱`:<https://v.douyin.com/iYRACKhP/>
|
||||
- `我才是岚岚`:<https://v.douyin.com/iYRAQM1C/>
|
||||
- `周憬艺 ziran`:<https://v.douyin.com/iYRAQs4h/>
|
||||
- `刘思瑶 nice`:<https://v.douyin.com/iYRAaERn/>
|
||||
- `彭十六 elf`:<https://v.douyin.com/iYRAHrVG/>
|
||||
- `李子柒`:<https://v.douyin.com/iYRA5B88/>
|
||||
|
||||
Imagen de las notas públicas de Xiaohongshu.
|
||||
|
||||
以上内容均是互联网公开信息
|
||||
|
||||
## Funciones y sugerencias
|
||||
|
||||
El proyecto se encuentra actualmente en las primeras etapas de desarrollo y continuamente se agregan nuevas funciones. Si tiene alguna característica o sugerencia para el software, no dude en contactarnos.`Issues`criado en
|
||||
Si también le gustan las ideas de diseño de este software, envíelas.`PR`, ¡Muchas gracias por tu apoyo!
|
||||
|
||||
## contáctame
|
||||
|
||||
Puedes contactar a mi correo<a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
|
||||
> Comparta mis otros proyectos de código abierto:
|
||||
>
|
||||
> _[**Escribir palabra**- Software de memorización de vocabulario que se puede utilizar en la web ~](https://github.com/zyronon/typing-word) <img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**Guiones web**- Algunos scripts útiles de Grease Monkey~](https://github.com/zyronon/web-scripts)<img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## acuerdo
|
||||
|
||||
[GPL](../LICENSE)
|
||||
131
docs/README.fr.md
Normal file
@@ -0,0 +1,131 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="README.en.md">English</a> | <a href="README.es.md">Spanish</a> | <a href="README.de.md">German</a> |
|
||||
<a href="README.fr.md">French</a> | <a href="../README.md">简体中文</a> | <a href="README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
`douyin-vue`est une parodie`抖音|TikTok`projet de courte vidéo mobile.`Vue`Des « bonnes pratiques » côté mobile, comparables au natif`App`Expérience soyeuse et douce. Utilisé le dernier`Vue`pile technologique, basée sur[`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)、[`Pinia`](https://pinia.vuejs.org/)accomplir. Les données sont enregistrées localement dans le projet via[`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter)La bibliothèque intercepte l'API et renvoie des données json locales pour simuler de véritables requêtes backend.
|
||||
|
||||
<div>
|
||||
<img width="150px" src='docs/imgs/1.gif' />
|
||||
<img width="150px" src='docs/imgs/2.gif' />
|
||||
<img width="150px" src='docs/imgs/3.gif' />
|
||||
<img width="150px" src='docs/imgs/4.gif' />
|
||||
<img width="150px" src='docs/imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## Accès en ligne
|
||||
|
||||
[//]: # "Gitee Pages: [https://zyronon.gitee.io/douyin/](https://zyronon.gitee.io/douyin/)(中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "注意:Gitee Pages现在无法更新,代码不是最新的。如果你能翻墙推荐访问下面地址 "
|
||||
|
||||
Pages GitHub :<https://dy.ttentau.top/>
|
||||
|
||||
[//]: # "Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) "
|
||||
|
||||
[//]: # "Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/)"
|
||||
|
||||
[//]: # "Vercel: [https://douyins.vercel.app](https://douyins.vercel.app)"
|
||||
|
||||
[//]: # "Android Apk: https://github.com/zyronon/douyin/releases"
|
||||
|
||||
[//]: # "**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览"
|
||||
|
||||
[//]: # "**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示"
|
||||
|
||||
## Lien
|
||||
|
||||
\[Série Imitation Douyin] 1 :[200 lignes de code pour implémenter un composant carrousel similaire à Swiper.js](https://juejin.cn/post/7360512664317018146)
|
||||
\[Série Imitation Douyin] 2 :[Réaliser l'effet "vidéo coulissante infinie" sur Douyin](https://juejin.cn/post/7361614921519054883)
|
||||
\[Série Imitation Douyin] Trois :[Introduction à l'utilisation du routage Vue et à l'ajout d'animations de transition](https://juejin.cn/post/7362528152777130025)
|
||||
\[Série Imitation Douyin] Quatre :[Mise en cache des routes conditionnelles Vue, tout comme les sites d'information traditionnels](https://juejin.cn/post/7365334891473240101)
|
||||
\[Série Imitation Douyin] Cinq :[Les actions Github déploient des pages, synchronisent avec Gitee, traduisent README, emballent l'image Docker](https://juejin.cn/post/7365757742381957161)
|
||||
|
||||
## courir
|
||||
|
||||
Remarque : ce projet convient uniquement à l'étude et à la recherche, et non à un usage commercial.
|
||||
|
||||
### Déployez rapidement sur Vercel
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### Déployer sur Docker
|
||||
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
|
||||
### développement local
|
||||
|
||||
**Remarque : La commande git doit être clonée pour s'exécuter. Le téléchargement du package zip ne peut pas s'exécuter. Si la vitesse de clonage est trop lente, il est recommandé d'utiliser l'adresse du gîte**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
Ouvrez votre navigateur et visitez :<http://127.0.0.1:3000>
|
||||
|
||||
**Remarque : Vous devez passer le navigateur en mode mobile, appuyez d'abord sur`F12`Pour afficher la console, appuyez sur`Ctrl+Shift+M`pour prévisualiser normalement**
|
||||
|
||||
## Les sources de données
|
||||
|
||||
La vidéo provient des célébrités Douyin suivantes
|
||||
|
||||
- `我是香秀 🐂🍺`:<https://v.douyin.com/iYRAPA2L/>
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`:<https://v.douyin.com/iYRA56de/>
|
||||
- `条子`:<https://v.douyin.com/iYRAaqjr/>
|
||||
- `达莎 Digi`:<https://v.douyin.com/iYRA6rwT/>
|
||||
- `小橙子`:<https://v.douyin.com/iYRAnudw/>
|
||||
- `南恬`:<https://v.douyin.com/iYRAbKm3/>
|
||||
- `小霸宠牛排 🥩`:<https://v.douyin.com/iYRSosVB/>
|
||||
- `奶茶妹 ◕🌱`:<https://v.douyin.com/iYRACKhP/>
|
||||
- `我才是岚岚`:<https://v.douyin.com/iYRAQM1C/>
|
||||
- `周憬艺 ziran`:<https://v.douyin.com/iYRAQs4h/>
|
||||
- `刘思瑶 nice`:<https://v.douyin.com/iYRAaERn/>
|
||||
- `彭十六 elf`:<https://v.douyin.com/iYRAHrVG/>
|
||||
- `李子柒`:<https://v.douyin.com/iYRA5B88/>
|
||||
|
||||
Photo tirée des notes publiques de Xiaohongshu
|
||||
|
||||
Le contenu ci-dessus est toute l'information publique sur Internet
|
||||
|
||||
## Fonctionnalités et suggestions
|
||||
|
||||
Le projet en est actuellement aux premiers stades de développement et de nouvelles fonctionnalités sont ajoutées continuellement. Si vous avez des fonctionnalités ou des suggestions pour le logiciel, n'hésitez pas à nous contacter.`Issues`élevé dans
|
||||
Si vous aimez également les idées de conception de ce logiciel, veuillez le soumettre`PR`, Merci beaucoup pour votre soutient!
|
||||
|
||||
## Contactez moi
|
||||
|
||||
Vous pouvez contacter mon email<a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
|
||||
> Partagez mes autres projets open source :
|
||||
>
|
||||
> _[**Taper un mot**- Logiciel de mémorisation de vocabulaire utilisable sur le web~](https://github.com/zyronon/typing-word)<img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**Scripts Web**- Quelques scripts Grease Monkey utiles ~](https://github.com/zyronon/web-scripts)<img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## accord
|
||||
|
||||
[GPL](../LICENSE)
|
||||
132
docs/README.ja.md
Normal file
@@ -0,0 +1,132 @@
|
||||
<h1 align="center">
|
||||
Douyin-Vue
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="README.en.md">English</a> | <a href="README.es.md">Spanish</a> | <a href="README.de.md">German</a> |
|
||||
<a href="README.fr.md">French</a> | <a href="../README.md">简体中文</a> | <a href="README.ja.md">日本語</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/zyronon/douyin/blob/master/LICENSE"><img src="https://img.shields.io/github/license/zyronon/douyin" alt="License"></a>
|
||||
<a><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg"/></a>
|
||||
<a><img src="https://img.shields.io/badge/Powered%20by-Vue-blue"/></a>
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
`douyin-vue`パロディです`抖音|TikTok`モバイルショートビデオプロジェクト。`Vue`ネイティブと同等のモバイル側の「ベスト プラクティス」`App`シルキーで滑らかな使い心地。最新のものを使用しました`Vue`テクノロジースタック、に基づく[`Vue3`](https://cn.vuejs.org/)、[`Vite5`](https://cn.vitejs.dev/)、[`Pinia`](https://pinia.vuejs.org/)成し遂げる。データはプロジェクト内でローカルに保存されます。[`axios-mock-adapter`](https://github.com/ctimmerm/axios-mock-adapter)ライブラリは API をインターセプトし、ローカルの JSON データを返して、実際のバックエンド リクエストをシミュレートします。
|
||||
|
||||
<div>
|
||||
<img width="150px" src='docs/imgs/1.gif' />
|
||||
<img width="150px" src='docs/imgs/2.gif' />
|
||||
<img width="150px" src='docs/imgs/3.gif' />
|
||||
<img width="150px" src='docs/imgs/4.gif' />
|
||||
<img width="150px" src='docs/imgs/5.gif' />
|
||||
</div>
|
||||
|
||||
## オンラインアクセス
|
||||
|
||||
[//]: # "Gitee Pages: [https://zyronon.gitee.io/douyin/](https://zyronon.gitee.io/douyin/)(中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "注意:Gitee Pages现在无法更新,代码不是最新的。如果你能翻墙推荐访问下面地址 "
|
||||
|
||||
Github ページ:[https://dy.ttentau.top/](https://dy.ttentau.top/)
|
||||
|
||||
[//]: # "Gitee pages: [https://dy.ttentau.top/](https://dy.ttentau.top/) (中国地区推荐访问这个地址) "
|
||||
|
||||
[//]: # "Github pages: [https://zyronon.github.io/douyin/](https://zyronon.github.io/douyin/) "
|
||||
|
||||
[//]: # "Netlify: [https://douyins.netlify.app/](https://douyins.netlify.app/)"
|
||||
|
||||
[//]: # "Vercel: [https://douyins.vercel.app](https://douyins.vercel.app)"
|
||||
|
||||
[//]: # "Android Apk: https://github.com/zyronon/douyin/releases"
|
||||
|
||||
[//]: # "**注意**:`PC` 必须将浏览器切到手机模式,先按 `F12` 调出控制台,再按 `Ctrl+Shift+M`才能正常预览"
|
||||
|
||||
[//]: # "**注意**:手机请用 [Via 浏览器](https://viayoo.com/zh-cn/) 或 Chrome 浏览器预览。其它浏览器可能会强制将视频全屏,导致无法正常显示"
|
||||
|
||||
## リンク
|
||||
|
||||
【模倣同音シリーズ】 1:[Swiper.js に似たカルーセル コンポーネントを実装するための 200 行のコード](https://juejin.cn/post/7360512664317018146)
|
||||
【模倣同音シリーズ】 2:[Douyinで「無限スライドビデオ」効果を実現](https://juejin.cn/post/7361614921519054883)
|
||||
【模倣同音シリーズ】 3:[Vue ルーティングの使用とトランジション アニメーションの追加の概要](https://juejin.cn/post/7362528152777130025)
|
||||
【模倣同音シリーズ】 4:[従来のニュースサイトと同様に、Vue の条件付きルート キャッシュ](https://juejin.cn/post/7365334891473240101)
|
||||
【模倣同音シリーズ】 5:[Github Actions ページのデプロイ、Gitee への同期、README の翻訳、Docker イメージのパッケージ化](https://juejin.cn/post/7365757742381957161)
|
||||
|
||||
## 実行
|
||||
|
||||
注: このプロジェクトは研究と研究のみに適しており、商業利用には適していません。
|
||||
|
||||
### Vercel への迅速な導入
|
||||
|
||||
[](https://vercel.com/new/clone?repository-url=https://github.com/zyronon/douyin)
|
||||
|
||||
### Dockerへのデプロイ
|
||||
|
||||
```bash
|
||||
# pull Docker image
|
||||
docker pull ghcr.io/zyronon/douyin-vue:latest
|
||||
|
||||
# start container, nginx reverse proxy custom port, for example: docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
docker run -d -p 80:80 ghcr.io/zyronon/douyin-vue:latest
|
||||
```
|
||||
|
||||
### 地域開発
|
||||
|
||||
**注: git コマンドを実行するには、クローンを作成する必要があります。zip パッケージのダウンロードは実行できません。クローン速度が遅すぎる場合は、gitee アドレスを使用することをお勧めします。**
|
||||
|
||||
```bash
|
||||
git clone https://gitee.com/zyronon/douyin.git (中国使用)
|
||||
https://github.com/zyronon/douyin.git
|
||||
cd douyin
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
ブラウザを開いて、以下にアクセスしてください。[http://127.0.0.1:3000](http://127.0.0.1:3000)
|
||||
|
||||
**注: ブラウザをモバイル モードに切り替える必要があります。最初に を押します。`F12`コンソールを表示するには、`Ctrl+Shift+M` を押します。通常にプレビューする**
|
||||
|
||||
## データソース
|
||||
|
||||
このビデオは以下のDouyinの有名人からのものです
|
||||
|
||||
- `我是香秀 🐂🍺`: [https://v.douyin.com/iYRAPA2L/](https://v.douyin.com/iYRAPA2L/)
|
||||
- `杨老虎 🐯(磕穿下巴掉牙版)`: [https://v.douyin.com/iYRA56de/](https://v.douyin.com/iYRA56de/)
|
||||
- `条子`: [https://v.douyin.com/iYRAaqjr/](https://v.douyin.com/iYRAaqjr/)
|
||||
- `达莎 Digi`:[https://v.douyin.com/iYRA6rwT/](https://v.douyin.com/iYRA6rwT/)
|
||||
- `小橙子`: [https://v.douyin.com/iYRAnudw/](https://v.douyin.com/iYRAnudw/)
|
||||
- `南恬`: [https://v.douyin.com/iYRAbKm3/](https://v.douyin.com/iYRAbKm3/)
|
||||
- `小霸宠牛排 🥩`:[https://v.douyin.com/iYRSosVB/](https://v.douyin.com/iYRSosVB/)
|
||||
- `奶茶妹 ◕🌱`: [https://v.douyin.com/iYRACKhP/](https://v.douyin.com/iYRACKhP/)
|
||||
- `我才是岚岚`: [https://v.douyin.com/iYRAQM1C/](https://v.douyin.com/iYRAQM1C/)
|
||||
- `周憬艺 ziran`: [https://v.douyin.com/iYRAQs4h/](https://v.douyin.com/iYRAQs4h/)
|
||||
- `刘思瑶 nice`: [https://v.douyin.com/iYRAaERn/](https://v.douyin.com/iYRAaERn/)
|
||||
- `彭十六 elf`: [https://v.douyin.com/iYRAHrVG/](https://v.douyin.com/iYRAHrVG/)
|
||||
- `李子柒`: [https://v.douyin.com/iYRA5B88/](https://v.douyin.com/iYRA5B88/)
|
||||
|
||||
小紅書公文書からの写真
|
||||
|
||||
上記内容は全てインターネット上の公開情報です
|
||||
|
||||
## 特徴と提案
|
||||
|
||||
プロジェクトは現在開発の初期段階にあり、ソフトウェアの新機能や提案があれば、お気軽にお問い合わせください。`Issues`で育ちました
|
||||
このソフトウェアのデザインアイデアも気に入っていただけましたら、ぜひ `PR` を送信してください、 ご支援ありがとうございました!
|
||||
|
||||
## 私に連絡して
|
||||
|
||||
私のメールアドレスにご連絡いただけます<a href="mailto:zyronon@163.com">zyronon@163.com</a>
|
||||
|
||||
> 私の他のオープンソース プロジェクトを共有してください:
|
||||
>
|
||||
> _[**単語を入力する**~Web上で使える単語暗記ソフト~](https://github.com/zyronon/typing-word)<img src="https://img.shields.io/github/stars/zyronon/typing-word.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
> _[**ウェブスクリプト**- いくつかの便利な Grease Monkey スクリプト~](https://github.com/zyronon/web-scripts)<img src="https://img.shields.io/github/stars/zyronon/web-scripts.svg?style=flat-square&label=Star&color=4285dd&logo=github" height="16px" />_
|
||||
|
||||
## 合意
|
||||
|
||||
[GPL](../LICENSE)
|
||||
BIN
docs/imgs/1.gif
Normal file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
docs/imgs/2.gif
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
docs/imgs/3.gif
Normal file
|
After Width: | Height: | Size: 3.9 MiB |
BIN
docs/imgs/4.gif
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
BIN
docs/imgs/5.gif
Normal file
|
After Width: | Height: | Size: 3.2 MiB |
BIN
docs/imgs/img-1.jpg
Normal file
|
After Width: | Height: | Size: 160 KiB |
BIN
docs/imgs/img-2.jpg
Normal file
|
After Width: | Height: | Size: 236 KiB |
BIN
docs/imgs/img-3.jpg
Normal file
|
After Width: | Height: | Size: 179 KiB |
BIN
docs/imgs/img-4.jpg
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
docs/imgs/img-5.jpg
Normal file
|
After Width: | Height: | Size: 200 KiB |
27
env.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/// <reference types="vite/client" />
|
||||
/// <reference types="unplugin-vue-macros/macros-global" />
|
||||
|
||||
declare const LATEST_COMMIT_HASH: string
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
isMoved: boolean
|
||||
isMuted: boolean
|
||||
showMutedNotice: boolean
|
||||
}
|
||||
|
||||
interface Navigator {
|
||||
control: any
|
||||
webkitGetUserMedia: any
|
||||
mozGetUserMedia: any
|
||||
getUserMedia: any
|
||||
}
|
||||
}
|
||||
|
||||
declare module '*.vue' {
|
||||
import type { DefineComponent } from 'vue'
|
||||
const component: DefineComponent<{}, {}, any>
|
||||
export default component
|
||||
}
|
||||
|
||||
export {}
|
||||
1
env/.env.gitee_pages
vendored
Normal file
@@ -0,0 +1 @@
|
||||
VITE_ENV = "GITEE_PAGES"
|
||||
1
env/.env.gp_pages
vendored
Normal file
@@ -0,0 +1 @@
|
||||
VITE_ENV = "GP_PAGES"
|
||||
1
env/.env.prod
vendored
Normal file
@@ -0,0 +1 @@
|
||||
VITE_ENV = "PROD"
|
||||
1
env/.env.uni
vendored
Normal file
@@ -0,0 +1 @@
|
||||
VITE_ENV = "UNI"
|
||||
63
index.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="referrer" content="no-referrer" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"
|
||||
id="viewport"
|
||||
/>
|
||||
<title>Douyin</title>
|
||||
<!-- <script crossorigin="anonymous"-->
|
||||
<!-- integrity="sha512-KkkY/3auRhaXDFzFMpwtZ+BrS8EBQ+GfiBxdJ9jGMi6Gg74/sYbq/IZpY593pkNjTmbeRfBwjpZo+7gcpH45Ww=="-->
|
||||
<!-- src="https://lib.baomitu.com/eruda/3.0.1/eruda.min.js"></script>-->
|
||||
<!-- <script>eruda.init();</script>-->
|
||||
<!-- <script>-->
|
||||
<!-- var _hmt = _hmt || []-->
|
||||
<!-- ;(function () {-->
|
||||
<!-- var hm = document.createElement('script')-->
|
||||
<!-- hm.src = 'https://hm.baidu.com/hm.js?6f910830f5a7d8b5f7e75d8d67458a7a'-->
|
||||
<!-- var s = document.getElementsByTagName('script')[0]-->
|
||||
<!-- s.parentNode.insertBefore(hm, s)-->
|
||||
<!-- })()-->
|
||||
<!-- </script>-->
|
||||
<style>
|
||||
::-webkit-scrollbar {
|
||||
display: none; /* Chrome Safari */
|
||||
}
|
||||
|
||||
.fade-in {
|
||||
animation: fade-in 0.3s;
|
||||
}
|
||||
|
||||
.fade-out {
|
||||
animation: fade-out 0.4s;
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-out {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
40
netlify.toml
Normal file
@@ -0,0 +1,40 @@
|
||||
[[redirects]]
|
||||
from = "/*"
|
||||
to = "/index.html"
|
||||
status = 200
|
||||
|
||||
[[headers]]
|
||||
for = "/*.js"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.css"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.png"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.jpg"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.webp"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.svg"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
[[headers]]
|
||||
for = "/*.json"
|
||||
[headers.values]
|
||||
Cache-Control = "public, max-age=31536000, must-revalidate"
|
||||
|
||||
14060
node/comment/data/detail_comments_2024-03-29.json
Normal file
33
node/comment/process.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import fs from 'fs'
|
||||
|
||||
let read = './data/detail_comments_2024-03-29.json'
|
||||
|
||||
let video_ids = [
|
||||
'7260749400622894336',
|
||||
'7128686458763889956',
|
||||
'7293100687989148943',
|
||||
'6923214072347512068',
|
||||
'7005490661592026405',
|
||||
'7161000281575148800',
|
||||
'7267478481213181238',
|
||||
'6686589698707590411',
|
||||
'7321200290739326262',
|
||||
'7194815099381484860',
|
||||
'6826943630775831812',
|
||||
'7110263965858549003',
|
||||
'7295697246132227343',
|
||||
'7270431418822446370',
|
||||
'6882368275695586568',
|
||||
'7000587983069957383',
|
||||
]
|
||||
let saveFileStr = fs.readFileSync(read, 'utf8')
|
||||
let data = JSON.parse(saveFileStr)
|
||||
video_ids.map((v) => {
|
||||
let video_comments = data.filter((a) => a.aweme_id == v)
|
||||
console.log('v', v, 'c', video_comments.length)
|
||||
fs.writeFileSync(
|
||||
`./video_id_${v}.json`,
|
||||
JSON.stringify(video_comments, null, 2),
|
||||
)
|
||||
})
|
||||
console.log('data', data.length)
|
||||
17985
node/input.json
Normal file
2890
node/ouput.json
Normal file
19
node/package.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "node",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"post-img": "cd post && node process-post-img.js",
|
||||
"post-list": "node process-post-list.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"axios": "^1.6.7",
|
||||
"nanoid": "^5.0.6",
|
||||
"request": "^2.88.2"
|
||||
}
|
||||
}
|
||||
520
node/pnpm-lock.yaml
generated
Normal file
@@ -0,0 +1,520 @@
|
||||
lockfileVersion: '9.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
dependencies:
|
||||
axios:
|
||||
specifier: ^1.6.7
|
||||
version: 1.12.0
|
||||
nanoid:
|
||||
specifier: ^5.0.6
|
||||
version: 5.0.9
|
||||
request:
|
||||
specifier: ^2.88.2
|
||||
version: 2.88.2
|
||||
|
||||
packages:
|
||||
|
||||
ajv@6.12.6:
|
||||
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
||||
|
||||
asn1@0.2.6:
|
||||
resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
|
||||
|
||||
assert-plus@1.0.0:
|
||||
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
|
||||
engines: {node: '>=0.8'}
|
||||
|
||||
asynckit@0.4.0:
|
||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||
|
||||
aws-sign2@0.7.0:
|
||||
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
|
||||
|
||||
aws4@1.12.0:
|
||||
resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
|
||||
|
||||
axios@1.12.0:
|
||||
resolution: {integrity: sha512-oXTDccv8PcfjZmPGlWsPSwtOJCZ/b6W5jAMCNcfwJbCzDckwG0jrYJFaWH1yvivfCXjVzV/SPDEhMB3Q+DSurg==}
|
||||
|
||||
bcrypt-pbkdf@1.0.2:
|
||||
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
|
||||
|
||||
call-bind-apply-helpers@1.0.2:
|
||||
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
caseless@0.12.0:
|
||||
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
|
||||
|
||||
combined-stream@1.0.8:
|
||||
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
||||
engines: {node: '>= 0.8'}
|
||||
|
||||
core-util-is@1.0.2:
|
||||
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
|
||||
|
||||
dashdash@1.14.1:
|
||||
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
|
||||
engines: {node: '>=0.10'}
|
||||
|
||||
delayed-stream@1.0.0:
|
||||
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
||||
engines: {node: '>=0.4.0'}
|
||||
|
||||
dunder-proto@1.0.1:
|
||||
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
ecc-jsbn@0.1.2:
|
||||
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
|
||||
|
||||
es-define-property@1.0.1:
|
||||
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
es-errors@1.3.0:
|
||||
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
es-object-atoms@1.1.1:
|
||||
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
es-set-tostringtag@2.1.0:
|
||||
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
extend@3.0.2:
|
||||
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
||||
|
||||
extsprintf@1.3.0:
|
||||
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
|
||||
engines: {'0': node >=0.6.0}
|
||||
|
||||
fast-deep-equal@3.1.3:
|
||||
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
||||
|
||||
fast-json-stable-stringify@2.1.0:
|
||||
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
||||
|
||||
follow-redirects@1.15.11:
|
||||
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
||||
engines: {node: '>=4.0'}
|
||||
peerDependencies:
|
||||
debug: '*'
|
||||
peerDependenciesMeta:
|
||||
debug:
|
||||
optional: true
|
||||
|
||||
forever-agent@0.6.1:
|
||||
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
|
||||
|
||||
form-data@2.3.3:
|
||||
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
|
||||
engines: {node: '>= 0.12'}
|
||||
|
||||
form-data@4.0.4:
|
||||
resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
|
||||
engines: {node: '>= 6'}
|
||||
|
||||
function-bind@1.1.2:
|
||||
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
||||
|
||||
get-intrinsic@1.3.0:
|
||||
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
get-proto@1.0.1:
|
||||
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
getpass@0.1.7:
|
||||
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
|
||||
|
||||
gopd@1.2.0:
|
||||
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
har-schema@2.0.0:
|
||||
resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
har-validator@5.1.5:
|
||||
resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
|
||||
engines: {node: '>=6'}
|
||||
deprecated: this library is no longer supported
|
||||
|
||||
has-symbols@1.1.0:
|
||||
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
has-tostringtag@1.0.2:
|
||||
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
hasown@2.0.2:
|
||||
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
http-signature@1.2.0:
|
||||
resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
|
||||
engines: {node: '>=0.8', npm: '>=1.3.7'}
|
||||
|
||||
is-typedarray@1.0.0:
|
||||
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
|
||||
|
||||
isstream@0.1.2:
|
||||
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
|
||||
|
||||
jsbn@0.1.1:
|
||||
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
|
||||
|
||||
json-schema-traverse@0.4.1:
|
||||
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
||||
|
||||
json-schema@0.4.0:
|
||||
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
||||
|
||||
json-stringify-safe@5.0.1:
|
||||
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
|
||||
|
||||
jsprim@1.4.2:
|
||||
resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
|
||||
engines: {node: '>=0.6.0'}
|
||||
|
||||
math-intrinsics@1.1.0:
|
||||
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
mime-db@1.52.0:
|
||||
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
mime-types@2.1.35:
|
||||
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
nanoid@5.0.9:
|
||||
resolution: {integrity: sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==}
|
||||
engines: {node: ^18 || >=20}
|
||||
hasBin: true
|
||||
|
||||
oauth-sign@0.9.0:
|
||||
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
|
||||
|
||||
performance-now@2.1.0:
|
||||
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
|
||||
|
||||
proxy-from-env@1.1.0:
|
||||
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
||||
|
||||
psl@1.9.0:
|
||||
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
|
||||
|
||||
punycode@2.3.1:
|
||||
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
qs@6.5.3:
|
||||
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
|
||||
engines: {node: '>=0.6'}
|
||||
|
||||
request@2.88.2:
|
||||
resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
|
||||
engines: {node: '>= 6'}
|
||||
deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
|
||||
|
||||
safe-buffer@5.2.1:
|
||||
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
||||
|
||||
safer-buffer@2.1.2:
|
||||
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
||||
|
||||
sshpk@1.18.0:
|
||||
resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
hasBin: true
|
||||
|
||||
tough-cookie@2.5.0:
|
||||
resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
|
||||
engines: {node: '>=0.8'}
|
||||
|
||||
tunnel-agent@0.6.0:
|
||||
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
||||
|
||||
tweetnacl@0.14.5:
|
||||
resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
|
||||
|
||||
uri-js@4.4.1:
|
||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||
|
||||
uuid@3.4.0:
|
||||
resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
|
||||
deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
|
||||
hasBin: true
|
||||
|
||||
verror@1.10.0:
|
||||
resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
|
||||
engines: {'0': node >=0.6.0}
|
||||
|
||||
snapshots:
|
||||
|
||||
ajv@6.12.6:
|
||||
dependencies:
|
||||
fast-deep-equal: 3.1.3
|
||||
fast-json-stable-stringify: 2.1.0
|
||||
json-schema-traverse: 0.4.1
|
||||
uri-js: 4.4.1
|
||||
|
||||
asn1@0.2.6:
|
||||
dependencies:
|
||||
safer-buffer: 2.1.2
|
||||
|
||||
assert-plus@1.0.0: {}
|
||||
|
||||
asynckit@0.4.0: {}
|
||||
|
||||
aws-sign2@0.7.0: {}
|
||||
|
||||
aws4@1.12.0: {}
|
||||
|
||||
axios@1.12.0:
|
||||
dependencies:
|
||||
follow-redirects: 1.15.11
|
||||
form-data: 4.0.4
|
||||
proxy-from-env: 1.1.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
bcrypt-pbkdf@1.0.2:
|
||||
dependencies:
|
||||
tweetnacl: 0.14.5
|
||||
|
||||
call-bind-apply-helpers@1.0.2:
|
||||
dependencies:
|
||||
es-errors: 1.3.0
|
||||
function-bind: 1.1.2
|
||||
|
||||
caseless@0.12.0: {}
|
||||
|
||||
combined-stream@1.0.8:
|
||||
dependencies:
|
||||
delayed-stream: 1.0.0
|
||||
|
||||
core-util-is@1.0.2: {}
|
||||
|
||||
dashdash@1.14.1:
|
||||
dependencies:
|
||||
assert-plus: 1.0.0
|
||||
|
||||
delayed-stream@1.0.0: {}
|
||||
|
||||
dunder-proto@1.0.1:
|
||||
dependencies:
|
||||
call-bind-apply-helpers: 1.0.2
|
||||
es-errors: 1.3.0
|
||||
gopd: 1.2.0
|
||||
|
||||
ecc-jsbn@0.1.2:
|
||||
dependencies:
|
||||
jsbn: 0.1.1
|
||||
safer-buffer: 2.1.2
|
||||
|
||||
es-define-property@1.0.1: {}
|
||||
|
||||
es-errors@1.3.0: {}
|
||||
|
||||
es-object-atoms@1.1.1:
|
||||
dependencies:
|
||||
es-errors: 1.3.0
|
||||
|
||||
es-set-tostringtag@2.1.0:
|
||||
dependencies:
|
||||
es-errors: 1.3.0
|
||||
get-intrinsic: 1.3.0
|
||||
has-tostringtag: 1.0.2
|
||||
hasown: 2.0.2
|
||||
|
||||
extend@3.0.2: {}
|
||||
|
||||
extsprintf@1.3.0: {}
|
||||
|
||||
fast-deep-equal@3.1.3: {}
|
||||
|
||||
fast-json-stable-stringify@2.1.0: {}
|
||||
|
||||
follow-redirects@1.15.11: {}
|
||||
|
||||
forever-agent@0.6.1: {}
|
||||
|
||||
form-data@2.3.3:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
mime-types: 2.1.35
|
||||
|
||||
form-data@4.0.4:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
es-set-tostringtag: 2.1.0
|
||||
hasown: 2.0.2
|
||||
mime-types: 2.1.35
|
||||
|
||||
function-bind@1.1.2: {}
|
||||
|
||||
get-intrinsic@1.3.0:
|
||||
dependencies:
|
||||
call-bind-apply-helpers: 1.0.2
|
||||
es-define-property: 1.0.1
|
||||
es-errors: 1.3.0
|
||||
es-object-atoms: 1.1.1
|
||||
function-bind: 1.1.2
|
||||
get-proto: 1.0.1
|
||||
gopd: 1.2.0
|
||||
has-symbols: 1.1.0
|
||||
hasown: 2.0.2
|
||||
math-intrinsics: 1.1.0
|
||||
|
||||
get-proto@1.0.1:
|
||||
dependencies:
|
||||
dunder-proto: 1.0.1
|
||||
es-object-atoms: 1.1.1
|
||||
|
||||
getpass@0.1.7:
|
||||
dependencies:
|
||||
assert-plus: 1.0.0
|
||||
|
||||
gopd@1.2.0: {}
|
||||
|
||||
har-schema@2.0.0: {}
|
||||
|
||||
har-validator@5.1.5:
|
||||
dependencies:
|
||||
ajv: 6.12.6
|
||||
har-schema: 2.0.0
|
||||
|
||||
has-symbols@1.1.0: {}
|
||||
|
||||
has-tostringtag@1.0.2:
|
||||
dependencies:
|
||||
has-symbols: 1.1.0
|
||||
|
||||
hasown@2.0.2:
|
||||
dependencies:
|
||||
function-bind: 1.1.2
|
||||
|
||||
http-signature@1.2.0:
|
||||
dependencies:
|
||||
assert-plus: 1.0.0
|
||||
jsprim: 1.4.2
|
||||
sshpk: 1.18.0
|
||||
|
||||
is-typedarray@1.0.0: {}
|
||||
|
||||
isstream@0.1.2: {}
|
||||
|
||||
jsbn@0.1.1: {}
|
||||
|
||||
json-schema-traverse@0.4.1: {}
|
||||
|
||||
json-schema@0.4.0: {}
|
||||
|
||||
json-stringify-safe@5.0.1: {}
|
||||
|
||||
jsprim@1.4.2:
|
||||
dependencies:
|
||||
assert-plus: 1.0.0
|
||||
extsprintf: 1.3.0
|
||||
json-schema: 0.4.0
|
||||
verror: 1.10.0
|
||||
|
||||
math-intrinsics@1.1.0: {}
|
||||
|
||||
mime-db@1.52.0: {}
|
||||
|
||||
mime-types@2.1.35:
|
||||
dependencies:
|
||||
mime-db: 1.52.0
|
||||
|
||||
nanoid@5.0.9: {}
|
||||
|
||||
oauth-sign@0.9.0: {}
|
||||
|
||||
performance-now@2.1.0: {}
|
||||
|
||||
proxy-from-env@1.1.0: {}
|
||||
|
||||
psl@1.9.0: {}
|
||||
|
||||
punycode@2.3.1: {}
|
||||
|
||||
qs@6.5.3: {}
|
||||
|
||||
request@2.88.2:
|
||||
dependencies:
|
||||
aws-sign2: 0.7.0
|
||||
aws4: 1.12.0
|
||||
caseless: 0.12.0
|
||||
combined-stream: 1.0.8
|
||||
extend: 3.0.2
|
||||
forever-agent: 0.6.1
|
||||
form-data: 2.3.3
|
||||
har-validator: 5.1.5
|
||||
http-signature: 1.2.0
|
||||
is-typedarray: 1.0.0
|
||||
isstream: 0.1.2
|
||||
json-stringify-safe: 5.0.1
|
||||
mime-types: 2.1.35
|
||||
oauth-sign: 0.9.0
|
||||
performance-now: 2.1.0
|
||||
qs: 6.5.3
|
||||
safe-buffer: 5.2.1
|
||||
tough-cookie: 2.5.0
|
||||
tunnel-agent: 0.6.0
|
||||
uuid: 3.4.0
|
||||
|
||||
safe-buffer@5.2.1: {}
|
||||
|
||||
safer-buffer@2.1.2: {}
|
||||
|
||||
sshpk@1.18.0:
|
||||
dependencies:
|
||||
asn1: 0.2.6
|
||||
assert-plus: 1.0.0
|
||||
bcrypt-pbkdf: 1.0.2
|
||||
dashdash: 1.14.1
|
||||
ecc-jsbn: 0.1.2
|
||||
getpass: 0.1.7
|
||||
jsbn: 0.1.1
|
||||
safer-buffer: 2.1.2
|
||||
tweetnacl: 0.14.5
|
||||
|
||||
tough-cookie@2.5.0:
|
||||
dependencies:
|
||||
psl: 1.9.0
|
||||
punycode: 2.3.1
|
||||
|
||||
tunnel-agent@0.6.0:
|
||||
dependencies:
|
||||
safe-buffer: 5.2.1
|
||||
|
||||
tweetnacl@0.14.5: {}
|
||||
|
||||
uri-js@4.4.1:
|
||||
dependencies:
|
||||
punycode: 2.3.1
|
||||
|
||||
uuid@3.4.0: {}
|
||||
|
||||
verror@1.10.0:
|
||||
dependencies:
|
||||
assert-plus: 1.0.0
|
||||
core-util-is: 1.0.2
|
||||
extsprintf: 1.3.0
|
||||
8148
node/post/data/user-04074747..json
Normal file
12392
node/post/data/user-12345xiaolaohu.json
Normal file
9071
node/post/data/user-13632088.json
Normal file
12751
node/post/data/user-71158770.json
Normal file
8528
node/post/data/user-81069823274.json
Normal file
8583
node/post/data/user-8357999.json
Normal file
10887
node/post/data/user-Dashalove.json
Normal file
6672
node/post/data/user-LL991221.z.json
Normal file
10975
node/post/data/user-Lsy0508.json
Normal file
10019
node/post/data/user-SUNMENG333.json
Normal file
11026
node/post/data/user-elfin16.json
Normal file
10571
node/post/data/user-jingyiziran.json
Normal file
9862
node/post/data/user-shmumu.json
Normal file
59
node/post/process-post-img.js
Normal file
@@ -0,0 +1,59 @@
|
||||
import fs from 'fs'
|
||||
import request from 'request'
|
||||
import { nanoid } from 'nanoid'
|
||||
|
||||
let fileName = './data/user-SUNMENG333.json'
|
||||
let saveFileStr = fs.readFileSync(fileName, 'utf8')
|
||||
let inputData = JSON.parse(saveFileStr)
|
||||
let saveFilePath = './imgs/'
|
||||
|
||||
const downloadImage = async (src, dest) => {
|
||||
console.log('下载:', src)
|
||||
return new Promise((resolve) => {
|
||||
request.head(src, (err) => {
|
||||
if (err) {
|
||||
console.log(err)
|
||||
return
|
||||
}
|
||||
src &&
|
||||
request(src)
|
||||
.pipe(fs.createWriteStream(dest))
|
||||
.on('close', () => {
|
||||
setTimeout(() => resolve(true), 1500)
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
async function test3(list) {
|
||||
let url = list.pop()
|
||||
if (url.includes('http')) {
|
||||
let name = nanoid() + '.png'
|
||||
await downloadImage(url, saveFilePath + name)
|
||||
return [name]
|
||||
}
|
||||
return [url]
|
||||
// fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2));
|
||||
}
|
||||
|
||||
inputData = inputData.slice(0, 70)
|
||||
console.log(inputData.length)
|
||||
for (let i = 0; i < inputData.length; i++) {
|
||||
let v = inputData[i]
|
||||
console.log(`处理:第${i}个视频:`, v.desc)
|
||||
|
||||
if (v.video?.play_addr?.url_list) {
|
||||
v.video.play_addr.url_list = [v.video.play_addr.url_list.pop()]
|
||||
}
|
||||
try {
|
||||
if (v.video?.cover?.url_list) {
|
||||
v.video.cover.url_list = await test3(v.video?.cover?.url_list)
|
||||
}
|
||||
if (v.video?.animated_cover) {
|
||||
delete v.video.animated_cover
|
||||
}
|
||||
fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2))
|
||||
} catch (e) {
|
||||
console.log('出错了', e)
|
||||
}
|
||||
}
|
||||
84
node/post/process-post.js
Normal file
@@ -0,0 +1,84 @@
|
||||
import fs from 'fs'
|
||||
|
||||
let fileName = './post/user-81069823274.json'
|
||||
const str = fs.readFileSync('./input.json', 'utf8')
|
||||
let inputData = JSON.parse(str)
|
||||
|
||||
const saveFileStr = fs.readFileSync(fileName, 'utf8')
|
||||
let saveFileData = JSON.parse(saveFileStr)
|
||||
// console.log('list', inputData.has_more)
|
||||
|
||||
// console.log('f', fs)
|
||||
|
||||
inputData.aweme_list.map((v) => {
|
||||
Object.keys(v).map((k) => {
|
||||
if (
|
||||
![
|
||||
'aweme_id',
|
||||
'desc',
|
||||
'create_time',
|
||||
'music',
|
||||
'video',
|
||||
'share_url',
|
||||
'statistics',
|
||||
'status',
|
||||
'text_extra',
|
||||
'is_top',
|
||||
'share_info',
|
||||
'duration',
|
||||
'image_infos',
|
||||
'risk_infos',
|
||||
'position',
|
||||
'author_user_id',
|
||||
'prevent_download',
|
||||
'long_video',
|
||||
'aweme_control',
|
||||
'images',
|
||||
'suggest_words',
|
||||
].includes(k)
|
||||
) {
|
||||
delete v[k]
|
||||
}
|
||||
})
|
||||
|
||||
Object.keys(v.music).map((k) => {
|
||||
if (
|
||||
![
|
||||
'id',
|
||||
'title',
|
||||
'author',
|
||||
'cover_medium',
|
||||
'cover_thumb',
|
||||
'play_url',
|
||||
'duration',
|
||||
'user_count',
|
||||
'owner_id',
|
||||
'owner_nickname',
|
||||
'is_original',
|
||||
].includes(k)
|
||||
) {
|
||||
delete v.music[k]
|
||||
}
|
||||
})
|
||||
Object.keys(v.video).map((k) => {
|
||||
if (
|
||||
![
|
||||
'play_addr',
|
||||
'cover',
|
||||
'height',
|
||||
'width',
|
||||
'ratio',
|
||||
'use_static_cover',
|
||||
'duration',
|
||||
'horizontal_type',
|
||||
'animated_cover',
|
||||
].includes(k)
|
||||
) {
|
||||
delete v.video[k]
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
saveFileData = saveFileData.concat(inputData.aweme_list)
|
||||
fs.writeFileSync('./ouput.json', JSON.stringify(inputData.aweme_list, null, 2))
|
||||
fs.writeFileSync(fileName, JSON.stringify(saveFileData, null, 2))
|
||||
47
node/process-post-list.js
Normal file
@@ -0,0 +1,47 @@
|
||||
import fs from 'fs'
|
||||
import { users } from './user/data.js'
|
||||
|
||||
let read = './post/data/'
|
||||
|
||||
let max = 0
|
||||
let map = []
|
||||
|
||||
//判断是不是目录
|
||||
const dirs = fs.readdirSync(read)
|
||||
dirs.forEach((dictName) => {
|
||||
formatDict(read, dictName)
|
||||
})
|
||||
|
||||
function formatDict(dir, name) {
|
||||
let filePath = dir + name
|
||||
let saveFileStr = fs.readFileSync(filePath, 'utf8')
|
||||
let inputData = JSON.parse(saveFileStr)
|
||||
map.push({
|
||||
userId: name,
|
||||
list: inputData,
|
||||
})
|
||||
if (max < inputData.length) max = inputData.length
|
||||
}
|
||||
|
||||
let newList = []
|
||||
// max = 5
|
||||
for (let i = 0; i < max; i++) {
|
||||
map.map((v) => {
|
||||
if (v.list.length > i) {
|
||||
let data = v.list[i]
|
||||
newList.push(data)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// console.log(newList)
|
||||
|
||||
let data = newList.slice(0, 6)
|
||||
data.map((v) => {
|
||||
let u = users.find((a) => a.uid == v.author_user_id)
|
||||
if (u) {
|
||||
v.author = u
|
||||
}
|
||||
})
|
||||
fs.writeFileSync('./posts6.json', JSON.stringify(data, null, 2))
|
||||
fs.writeFileSync('./posts.json', JSON.stringify(newList.slice(6), null, 2))
|
||||
33
node/remove-dist-json.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
|
||||
let read = 'dist/data'
|
||||
|
||||
function deleteFile(url, name) {
|
||||
var files = []
|
||||
|
||||
if (fs.existsSync(url)) {
|
||||
//判断给定的路径是否存在
|
||||
|
||||
files = fs.readdirSync(url) //返回文件和子目录的数组
|
||||
|
||||
files.forEach(function (file) {
|
||||
var curPath = path.join(url, file)
|
||||
|
||||
if (fs.statSync(curPath).isDirectory()) {
|
||||
//同步读取文件夹文件,如果是文件夹,则函数回调
|
||||
deleteFile(curPath, name)
|
||||
} else {
|
||||
if (file.indexOf(name) > -1) {
|
||||
//是指定文件,则删除
|
||||
fs.unlinkSync(curPath)
|
||||
console.log('删除文件:' + curPath)
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
console.log('给定的路径不存在!')
|
||||
}
|
||||
}
|
||||
|
||||
deleteFile(read, '.json')
|
||||
14
node/rename.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import fs from 'fs'
|
||||
|
||||
let read = './xhs/imgs/'
|
||||
let save = './xhs/imgs2/'
|
||||
|
||||
const dirs = fs.readdirSync(read)
|
||||
dirs.forEach((dictName) => {
|
||||
formatDict(read, dictName)
|
||||
})
|
||||
|
||||
function formatDict(dir, name) {
|
||||
let filePath = dir + name
|
||||
fs.copyFile(filePath, save + name.replace('.jpg', '.png'), () => {})
|
||||
}
|
||||
1750
node/user/data.js
Normal file
74
node/user/process-user-img.js
Normal file
@@ -0,0 +1,74 @@
|
||||
import fs from 'fs'
|
||||
import request from 'request'
|
||||
import { nanoid } from 'nanoid'
|
||||
|
||||
let fileName = './user.json'
|
||||
let saveFileStr = fs.readFileSync(fileName, 'utf8')
|
||||
let inputData = JSON.parse(saveFileStr)
|
||||
|
||||
const downloadImage = async (src, dest, callback) => {
|
||||
console.log('下载:', src, dest, Date.now())
|
||||
return new Promise((resolve) => {
|
||||
request.head(src, (err) => {
|
||||
if (err) {
|
||||
console.log(err)
|
||||
return
|
||||
}
|
||||
src &&
|
||||
request(src)
|
||||
.pipe(fs.createWriteStream(dest))
|
||||
.on('close', () => {
|
||||
setTimeout(resolve, 1000)
|
||||
callback && callback(null, dest)
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
let saveFilePath = './user-imgs/'
|
||||
|
||||
async function test(list) {
|
||||
for (let j = 0; j < list.length; j++) {
|
||||
let a = list[j]
|
||||
let coverUrl = a.url_list[a.url_list.length - 1]
|
||||
a.url_list = [coverUrl]
|
||||
if (coverUrl.includes('http')) {
|
||||
let name = nanoid() + '.png'
|
||||
await downloadImage(coverUrl, saveFilePath + name, () => {
|
||||
// console.log('close', name)
|
||||
a.url_list = [name]
|
||||
fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2))
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function test2(list) {
|
||||
for (let j = 0; j < list.length; j++) {
|
||||
let coverUrl = list[list.length - 1]
|
||||
if (coverUrl.includes('http')) {
|
||||
let name = nanoid() + '.png'
|
||||
await downloadImage(coverUrl, saveFilePath + name, () => {
|
||||
// console.log('close', name)
|
||||
fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2))
|
||||
})
|
||||
return [name]
|
||||
}
|
||||
return []
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 0; i < inputData.slice(0, 1111).length; i++) {
|
||||
let v = inputData[i]
|
||||
await test(v.cover_url)
|
||||
await test(v.white_cover_url)
|
||||
delete v.cover_and_head_image_info
|
||||
fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2))
|
||||
if (v.share_info && v.share_info.share_image_url && v.share_info.share_image_url.url_list) {
|
||||
let r = await test2(v.share_info.share_image_url.url_list)
|
||||
if (r.length) {
|
||||
v.share_info.share_image_url.url_list = r
|
||||
fs.writeFileSync(fileName, JSON.stringify(inputData, null, 2))
|
||||
}
|
||||
}
|
||||
}
|
||||
64
node/user/process-user.js
Normal file
@@ -0,0 +1,64 @@
|
||||
import fs from 'fs'
|
||||
|
||||
let fileName = './data.json'
|
||||
let saveFileStr = fs.readFileSync(fileName, 'utf8')
|
||||
let inputData = JSON.parse(saveFileStr)
|
||||
|
||||
inputData.map((v) => {
|
||||
Object.keys(v).map((k) => {
|
||||
if (
|
||||
![
|
||||
'avatar_168x168',
|
||||
'avatar_300x300',
|
||||
'aweme_count',
|
||||
'birthday_hide_level',
|
||||
'can_show_group_card',
|
||||
'commerce_user_level',
|
||||
'province',
|
||||
'city',
|
||||
'country',
|
||||
'district',
|
||||
'favoriting_count',
|
||||
'follow_status',
|
||||
'follower_count',
|
||||
'follower_request_status',
|
||||
'follower_status',
|
||||
'following_count',
|
||||
'forward_count',
|
||||
'public_collects_count',
|
||||
'share_info',
|
||||
'mplatform_followers_count',
|
||||
'nickname',
|
||||
'max_follower_count',
|
||||
'gender',
|
||||
'cover_colour',
|
||||
'cover_url',
|
||||
'commerce_info',
|
||||
'commerce_user_info',
|
||||
'short_id',
|
||||
'signature',
|
||||
'total_favorited',
|
||||
'uid',
|
||||
'unique_id',
|
||||
'user_age',
|
||||
'white_cover_url',
|
||||
'card_entries',
|
||||
'cover_and_head_image_info',
|
||||
'ip_location',
|
||||
].includes(k)
|
||||
) {
|
||||
delete v[k]
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
// saveFileData = saveFileData.concat(inputData.aweme_list)
|
||||
// fs.writeFileSync(
|
||||
// "./ouput.json",
|
||||
// JSON.stringify(inputData.aweme_list, null, 2)
|
||||
// );
|
||||
fs.writeFileSync(
|
||||
// fileName,
|
||||
'./data.json',
|
||||
JSON.stringify(inputData, null, 2),
|
||||
)
|
||||
1698
node/user/user.json
Normal file
92
node/xhs/process-xhs-img.js
Normal file
@@ -0,0 +1,92 @@
|
||||
import fs from 'fs'
|
||||
import request from 'request'
|
||||
import { nanoid } from 'nanoid'
|
||||
|
||||
let fileName = './xhs.json'
|
||||
let savefileName = './xhs-save.json'
|
||||
let saveFileStr = fs.readFileSync(fileName, 'utf8')
|
||||
let inputData = JSON.parse(saveFileStr)
|
||||
|
||||
const downloadImage = async (src, dest, callback) => {
|
||||
console.log('下载:', src, dest, Date.now())
|
||||
return new Promise((resolve) => {
|
||||
request.head(src, (err) => {
|
||||
if (err) {
|
||||
console.log(err)
|
||||
return
|
||||
}
|
||||
src &&
|
||||
request(src)
|
||||
.pipe(fs.createWriteStream(dest))
|
||||
.on('close', () => {
|
||||
setTimeout(resolve, 1500)
|
||||
callback && callback(null, dest)
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
let saveFilePath = './imgs/'
|
||||
|
||||
let imgList = []
|
||||
|
||||
async function test(list) {
|
||||
for (let j = 0; j < list.length; j++) {
|
||||
let a = list[j]
|
||||
let coverUrl = a.info_list[0].url
|
||||
|
||||
let rIndex = imgList.findIndex((v) => v.url === coverUrl)
|
||||
if (rIndex === -1) {
|
||||
if (coverUrl.includes('http')) {
|
||||
let name = nanoid() + '.png'
|
||||
imgList.push({
|
||||
name,
|
||||
url: coverUrl
|
||||
})
|
||||
await downloadImage(coverUrl, saveFilePath + name, () => {
|
||||
// console.log('close', name)
|
||||
list[j] = {
|
||||
info_list: [
|
||||
{
|
||||
url: name
|
||||
}
|
||||
]
|
||||
}
|
||||
fs.writeFileSync(savefileName, JSON.stringify(inputData, null, 2))
|
||||
})
|
||||
}
|
||||
} else {
|
||||
list[j] = {
|
||||
info_list: [
|
||||
{
|
||||
url: imgList[rIndex].name
|
||||
}
|
||||
]
|
||||
}
|
||||
console.log('重复')
|
||||
fs.writeFileSync(savefileName, JSON.stringify(inputData, null, 2))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 0; i < inputData.slice(0, 111111).length; i++) {
|
||||
let v = inputData[i]
|
||||
|
||||
if (v.note_card?.cover) {
|
||||
let url = v.note_card?.cover?.url_default
|
||||
let name = nanoid() + '.png'
|
||||
imgList.push({
|
||||
name,
|
||||
url: url
|
||||
})
|
||||
await downloadImage(url, saveFilePath + name, () => {
|
||||
// console.log('close', name)
|
||||
v.note_card.cover = { url_default: name }
|
||||
fs.writeFileSync(savefileName, JSON.stringify(inputData, null, 2))
|
||||
})
|
||||
}
|
||||
|
||||
if (v.note_card?.image_list) {
|
||||
await test(v.note_card.image_list)
|
||||
}
|
||||
}
|
||||
3105
node/xhs/xhs-save.json
Normal file
4976
node/xhs/xhs.json
Normal file
78
package.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "douyin-vue",
|
||||
"version": "1.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --host",
|
||||
"start": "vite --host",
|
||||
"serve": "vite --host",
|
||||
"build": "vite build",
|
||||
"test-del-json": "node node/remove-dist-json.js",
|
||||
"build-uni-app": "vite build --mode uni",
|
||||
"build-gp-pages": "vite build --mode gp_pages",
|
||||
"build-gitee-pages": "vite build --mode gitee_pages && pnpm run test-del-json",
|
||||
"build-only": "vite build",
|
||||
"build-check": "run-p type-check \"build-only {@}\" --",
|
||||
"type-check": "vue-tsc --build --force",
|
||||
"report": "vite build",
|
||||
"preview": "vite preview",
|
||||
"lint": "eslint --fix . --ext .vue,.js,.ts,.tsx,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
|
||||
"format": "prettier --write src/",
|
||||
"prepare": "husky",
|
||||
"commit": "git-cz"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jambonn/vue-lazyload": "1.0.9",
|
||||
"axios": "^1.12.0",
|
||||
"axios-mock-adapter": "^1.22.0",
|
||||
"core-js": "3.21.1",
|
||||
"libarchive-wasm": "^1.1.0",
|
||||
"mockjs": "^1.1.0",
|
||||
"pinia": "^2.1.7",
|
||||
"vue": "^3.5.13",
|
||||
"vue-router": "4.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^19.2.1",
|
||||
"@commitlint/config-conventional": "^19.1.0",
|
||||
"@iconify/vue": "^4.1.1",
|
||||
"@rushstack/eslint-patch": "^1.3.3",
|
||||
"@tsconfig/node20": "^20.1.2",
|
||||
"@types/node": "^20.11.28",
|
||||
"@vitejs/plugin-vue": "^5.0.4",
|
||||
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
||||
"@vue/eslint-config-prettier": "^8.0.0",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"@vue/tsconfig": "^0.5.1",
|
||||
"commitizen": "^4.3.0",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-vue": "^9.17.0",
|
||||
"git-last-commit": "^1.0.1",
|
||||
"husky": "^9.0.11",
|
||||
"less": "4.1.3",
|
||||
"lint-staged": "^15.2.2",
|
||||
"prettier": "^3.2.5",
|
||||
"rollup-plugin-visualizer": "^5.9.2",
|
||||
"typescript": "5.3.3",
|
||||
"unplugin-vue-macros": "^2.9.1",
|
||||
"vite": "^5.4.21",
|
||||
"vite-plugin-cdn-import": "0.3.5",
|
||||
"vue-tsc": "^2.0.6"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,ts,vue,jsx,tsx}": [
|
||||
"eslint --fix",
|
||||
"prettier --write"
|
||||
],
|
||||
"*.{scss,less,styl,html}": [
|
||||
"prettier --write"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"commitizen": {
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
}
|
||||
}
|
||||
5854
pnpm-lock.yaml
generated
Normal file
882
public/data/comments/video_id_6686589698707590411.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "6686823736022908936",
|
||||
"create_time": 1556897481,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "一直很好奇这种女人最后都嫁给了谁",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32382",
|
||||
"user_id": "102002194730",
|
||||
"sec_uid": "MS4wLjABAAAApw-m9jlnwV-e4PZbhSMRTL-yaIYJ-Y1z4D-dRD-EAP0",
|
||||
"short_user_id": "1561631531",
|
||||
"user_unique_id": "43039846893",
|
||||
"user_signature": "",
|
||||
"nickname": "1561631531",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "637",
|
||||
"last_modify_ts": 1711644156602
|
||||
},
|
||||
{
|
||||
"comment_id": "6686806674470764551",
|
||||
"create_time": 1556893507,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "我觉得这样的美女就应该坐在我的法拉利里面哭[惊呆]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "19974",
|
||||
"user_id": "99097919033",
|
||||
"sec_uid": "MS4wLjABAAAA3ibLg1UdxuSB-Ama7JKfW1o7bUviPhhAHEeNrQfU45Q",
|
||||
"short_user_id": "978194701",
|
||||
"user_unique_id": "yhx1529000000",
|
||||
"user_signature": "",
|
||||
"nickname": "yhx1529000000",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/c16000003f97583dac4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "887",
|
||||
"last_modify_ts": 1711644156612
|
||||
},
|
||||
{
|
||||
"comment_id": "6686812698388758541",
|
||||
"create_time": 1556894909,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "女人就要这样,走路的样子无视所有,所有的目光都在关注你",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "26452",
|
||||
"user_id": "109594320957",
|
||||
"sec_uid": "MS4wLjABAAAAXg0b9zNhZ0lI9CQ2TeMIHCvsq7jbh7bTyB5f3QYSWi4",
|
||||
"short_user_id": "2178206764",
|
||||
"user_unique_id": "AMRxueerdewo",
|
||||
"user_signature": "✨一枚普通的二胎宝妈\n✨日常|亲子|文案\n❤️感谢关🐷呀~",
|
||||
"nickname": "大优小萱baby",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_fce94823f331e1b577195f5cee9c0165.jpeg?from=2956013662",
|
||||
"sub_comment_count": "305",
|
||||
"last_modify_ts": 1711644156702
|
||||
},
|
||||
{
|
||||
"comment_id": "6686844052883324935",
|
||||
"create_time": 1556902218,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "一般这样的仙女都嫁给有钱的胖子,后者我已经具备了,我现在就需要变有钱了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "8883",
|
||||
"user_id": "63785717515",
|
||||
"sec_uid": "MS4wLjABAAAAkqSeZJxArcICKAsymLSNx7lcDoJL8pf1yGcdSSD5I04",
|
||||
"short_user_id": "44394114",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "简单的生活,实际上就是最大的幸福",
|
||||
"nickname": "牛哔克拉斯(不认输版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_d839a01040859b2cafffaf433ade3859.jpeg?from=2956013662",
|
||||
"sub_comment_count": "95",
|
||||
"last_modify_ts": 1711644156710
|
||||
},
|
||||
{
|
||||
"comment_id": "6686816299274371086",
|
||||
"create_time": 1556895749,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "每次看到这种视频我都恨自己为什么不是王思聪",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "9172",
|
||||
"user_id": "104002081328",
|
||||
"sec_uid": "MS4wLjABAAAAbsjMcStjw5LxRTjWDNxtIxvtlv99niUS2qI98PzHX1I",
|
||||
"short_user_id": "1679829753",
|
||||
"user_unique_id": "45039733491",
|
||||
"user_signature": "",
|
||||
"nickname": "1679829753",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "92",
|
||||
"last_modify_ts": 1711644156729
|
||||
},
|
||||
{
|
||||
"comment_id": "6686838938487259147",
|
||||
"create_time": 1556901025,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "裙子点视频左下角,在点去看看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2082",
|
||||
"user_id": "62839305427",
|
||||
"sec_uid": "MS4wLjABAAAAkXwrvzDNOUr-BnujrX712FgL4PY8kNKNpGYYAUjA0us",
|
||||
"short_user_id": "57063100",
|
||||
"user_unique_id": "jingyiziran",
|
||||
"user_signature": "知行合一",
|
||||
"nickname": "周子然JingYi",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f59bfced5c6a3b56d152f1e0437f06ec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "41",
|
||||
"last_modify_ts": 1711644156735
|
||||
},
|
||||
{
|
||||
"comment_id": "6687565684320403464",
|
||||
"create_time": 1557070228,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "我的妈呀,长这么漂亮干嘛",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3279",
|
||||
"user_id": "62105422243",
|
||||
"sec_uid": "MS4wLjABAAAABvhW7Im35DdH46MGMW4-3UsJbYf9sOjMwL52kqeiHbI",
|
||||
"short_user_id": "26002527",
|
||||
"user_unique_id": "ChanKerwin",
|
||||
"user_signature": "全网同名。 \n分享日常\n希望大家都可以加入粉丝群,",
|
||||
"nickname": "Chan瑞泽",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_02c1479d6282f1ebbebb08e24a0c93c4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "16",
|
||||
"last_modify_ts": 1711644156741
|
||||
},
|
||||
{
|
||||
"comment_id": "6686809645820149772",
|
||||
"create_time": 1556894197,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "不找了 就这里开始打了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "43",
|
||||
"user_id": "93031186714",
|
||||
"sec_uid": "MS4wLjABAAAAcI6jbo8Wbgmb6swym0ZJVOfZYzDjhKfl2XZj37n18S8",
|
||||
"short_user_id": "348798968",
|
||||
"user_unique_id": "AcE541121024",
|
||||
"user_signature": "",
|
||||
"nickname": "荒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_74af1d8f39213849f295b06df6839740.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156745
|
||||
},
|
||||
{
|
||||
"comment_id": "6686797297034215428",
|
||||
"create_time": 1556891322,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "真的很喜欢看漂亮的人",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "91",
|
||||
"user_id": "62178080744",
|
||||
"sec_uid": "MS4wLjABAAAATHOF8SVTT5gVT09wL2zC2ZrHpufjZPklqi1vl27niYw",
|
||||
"short_user_id": "29493106",
|
||||
"user_unique_id": "Mia11118",
|
||||
"user_signature": "",
|
||||
"nickname": "美妙",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-file_1b705932ea4aceaaa2c1464133927c68.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156751
|
||||
},
|
||||
{
|
||||
"comment_id": "6686826842084884494",
|
||||
"create_time": 1556898204,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "不是门太矮是小姐姐你太高了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "53",
|
||||
"user_id": "63893626428",
|
||||
"sec_uid": "MS4wLjABAAAAaOZ7asAqRizJ0E_IEyeyEA7wQO14tiBkR4JZuFBKJw0",
|
||||
"short_user_id": "181015670",
|
||||
"user_unique_id": "liubin74132",
|
||||
"user_signature": "",
|
||||
"nickname": "刘斌ᝰꫛꫀꪝ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_206e6575d8784ea097a07223c5f68253.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156758
|
||||
},
|
||||
{
|
||||
"comment_id": "6686818584452825095",
|
||||
"create_time": 1556896282,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "这么性感的秀腿,估计要迷倒丢魂一大片。。。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "30",
|
||||
"user_id": "75939180027",
|
||||
"sec_uid": "MS4wLjABAAAAZilZOASNaz117gZ4pyW_W7x85Hf5wN1n68gv8QZ-HgM",
|
||||
"short_user_id": "126525573",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "佳人翩翩美如画,黑眸亮眼妩媚花。\n青丝如墨颜似玉,婀娜多姿秀年华。\n 作者:🌹玫瑰艾伦❤(原创诗)\n\n杨家有儿女,玫瑰生于二胎,排行第三\n(小名三伢仔、三哥、三弟等)侗族(侗汉混血),湖南人。\n\n(段子仅娱乐)",
|
||||
"nickname": "🌹遇见 玫瑰艾伦❤️(潮汕版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_1b4c60002e7fe0451a281.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156767
|
||||
},
|
||||
{
|
||||
"comment_id": "6686830466609283080",
|
||||
"create_time": 1556899048,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "小姐姐对不起,不是你不够好,是我家门太低了你进不来[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "38",
|
||||
"user_id": "88320641018",
|
||||
"sec_uid": "MS4wLjABAAAArOdAPDEA-aaQtFdMnHp9X0RQfAB6Qg7Si0wJNSwun_4",
|
||||
"short_user_id": "272344844",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "qzuser",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_fa16000b176e07b94258.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156858
|
||||
},
|
||||
{
|
||||
"comment_id": "6686821128277049351",
|
||||
"create_time": 1556896875,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "我感觉只有我的老凤凰二八大杠自行车能承载了她",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "39",
|
||||
"user_id": "61695304267",
|
||||
"sec_uid": "MS4wLjABAAAAC3JbMAuXiHpng3xixRkLo_qmdkxge7a8mJtwRjLHnlU",
|
||||
"short_user_id": "22089977",
|
||||
"user_unique_id": "WGJYQMH",
|
||||
"user_signature": "人不能惯着、刷到点赞👍在走",
|
||||
"nickname": "拉倒吧王叔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_bbb8e4a1bf7f5d8e9d20a6acadc5dd34.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156864
|
||||
},
|
||||
{
|
||||
"comment_id": "6686824779699617799",
|
||||
"create_time": 1556897723,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "我一个女孩子家家的居然对这个视频看了又看[害羞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "30",
|
||||
"user_id": "21554502766",
|
||||
"sec_uid": "MS4wLjABAAAAg02u2JpPaXvn6yigtEALwJnAsEM12qGqv2Cao4TtrkY",
|
||||
"short_user_id": "16429218",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "以珍惜之心不放纵自己 信任之心不限制别人",
|
||||
"nickname": "小甜甜✧ෆ◞◟˃̶̤⌄˂̶̤⋆biu",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b28a99dececb468be4e33abcfdd8f56f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156869
|
||||
},
|
||||
{
|
||||
"comment_id": "6686828324431986702",
|
||||
"create_time": 1556898551,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "同样是女人,我怕是女娲捏人时用别人剩下的材料讲究捏出来的[微笑][微笑][微笑][微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "17",
|
||||
"user_id": "67878949466",
|
||||
"sec_uid": "MS4wLjABAAAAowOqUebf0CaqDHb8TFkAsg2txPCBSwdh5it8RN8uy9w",
|
||||
"short_user_id": "67933236",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "嘿,你们来看小仙女了吗🧚♀️",
|
||||
"nickname": "77柒柒妈妈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_319866e1ee356b2a4e998e711499ba8c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156876
|
||||
},
|
||||
{
|
||||
"comment_id": "6686842544904814595",
|
||||
"create_time": 1556901865,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "我二弟得了软骨病。头都抬不起来了还想看看美女。。[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "7",
|
||||
"user_id": "69358352005",
|
||||
"sec_uid": "MS4wLjABAAAAXYKkMpPXM5tV0xgaY5_ytMeAJGL2-SFrbiMYHcFf5YM",
|
||||
"short_user_id": "857594161",
|
||||
"user_unique_id": "Q407613780",
|
||||
"user_signature": "努力做事,诚信做人",
|
||||
"nickname": "圣达",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_01ca48e3f4ae44da9ca384dd842902e7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156881
|
||||
},
|
||||
{
|
||||
"comment_id": "6686822836910751747",
|
||||
"create_time": 1556897271,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "看到你,我这喜欢别人老婆的毛病又犯了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "35",
|
||||
"user_id": "97368435645",
|
||||
"sec_uid": "MS4wLjABAAAApxqFXsfdplFnxmyMYqU4R3ZBCwLfHbA8wiQIVoccy3o",
|
||||
"short_user_id": "1237714774",
|
||||
"user_unique_id": "yong921106",
|
||||
"user_signature": "浙江均旦游乐设备有限公司",
|
||||
"nickname": "鸟山明",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_eeb3d0f5a00b4301ba9161af5c336b78.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156887
|
||||
},
|
||||
{
|
||||
"comment_id": "6686782967459332099",
|
||||
"create_time": 1556887986,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "没人?不能啊!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21",
|
||||
"user_id": "102577789753",
|
||||
"sec_uid": "MS4wLjABAAAA29T20IArTpfY8QcYvmj9Y8DxlmvWfxYngbyahz2JRlM",
|
||||
"short_user_id": "1248149507",
|
||||
"user_unique_id": "bixinguai337",
|
||||
"user_signature": "哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈",
|
||||
"nickname": "Amanda.Yu",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_63b08ef8e9d8ec2d0ce145f49548fa21.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156892
|
||||
},
|
||||
{
|
||||
"comment_id": "6686828507269677068",
|
||||
"create_time": 1556898592,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "连女人都觉得你美[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21",
|
||||
"user_id": "87823727034",
|
||||
"sec_uid": "MS4wLjABAAAAtmzO3X1Z6gFtDbfgo4_6T0Dm7dyx6A6U6CzwM-FUwjI",
|
||||
"short_user_id": "267577240",
|
||||
"user_unique_id": "215725131a",
|
||||
"user_signature": "明知不可为而为之,是我对你最大的诚意。。。",
|
||||
"nickname": "珍珍 ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_9c2f9dce9c6b99ae449f758547fb2aee.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156898
|
||||
},
|
||||
{
|
||||
"comment_id": "6686826804013432835",
|
||||
"create_time": 1556898196,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "笑起来像钟丽缇年轻时候",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21",
|
||||
"user_id": "60732926336",
|
||||
"sec_uid": "MS4wLjABAAAA2VRR5s-jsxFXTMnxKPJVSSqKuuxDBtwZ8MD9RTERLkk",
|
||||
"short_user_id": "162342672",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "寻找宝藏👧",
|
||||
"nickname": "猫先生的萌兔子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_fd0200062bca7923e9bb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156904
|
||||
},
|
||||
{
|
||||
"comment_id": "7351221479646921472",
|
||||
"create_time": 1711589638,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "太漂亮了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "1714874692942856",
|
||||
"sec_uid": "MS4wLjABAAAAZzUwqonY6XTryhdSnvj80Nf9Dg3meSDcCQuZoILb8ydr9yAHd38QT6zcRHc4-pQb",
|
||||
"short_user_id": "3672091988",
|
||||
"user_unique_id": "dyenpc5w3z7c",
|
||||
"user_signature": "勿忘鑫安",
|
||||
"nickname": "勿忘鑫",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_190d1ab83a4343e29506f8a7015b441e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157769
|
||||
},
|
||||
{
|
||||
"comment_id": "7338673335775167232",
|
||||
"create_time": 1708668040,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[舔屏][舔屏][舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2577687738064029",
|
||||
"sec_uid": "MS4wLjABAAAA7DvN2GTODKsqQXw_NvR8x9qI5P55fA5WYs-Pi4vR_o7LsHCkF19CpaO4Rop2ajtx",
|
||||
"short_user_id": "60855273001",
|
||||
"user_unique_id": "60855273001",
|
||||
"user_signature": "",
|
||||
"nickname": "草堂客",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/hotsoon-avatar_46bc19d0b92b414cb4db0bb765035c95.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157779
|
||||
},
|
||||
{
|
||||
"comment_id": "7331642976961217314",
|
||||
"create_time": 1707031156,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "这竟然是五年前啦",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "59893170516",
|
||||
"sec_uid": "MS4wLjABAAAAf2K_KJXJtcG1ptmam9Fl9rYiiJeeW7qmk8HkETaunLQ",
|
||||
"short_user_id": "15579568",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "鹏啊~",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_46928e2549058392093ef5b236652e97.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157792
|
||||
},
|
||||
{
|
||||
"comment_id": "7329523191214572328",
|
||||
"create_time": 1706537607,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "高妹[不失礼貌的微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "94498618261",
|
||||
"sec_uid": "MS4wLjABAAAAqGFp1rKP6KH_rjeBkBRfoIE7bCBnmGp4sJ7JOr63Yi4",
|
||||
"short_user_id": "573399833",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "I am what I am",
|
||||
"nickname": "&一梦&",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_48e6408f6d7372865f7df1790ea09e4f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157804
|
||||
},
|
||||
{
|
||||
"comment_id": "7318068668532835072",
|
||||
"create_time": 1703870659,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "关注我了[比心]!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "101794298368",
|
||||
"sec_uid": "MS4wLjABAAAAa6HEBtyIeMlThUg4thfRSBU4PT9S3NGa0JCLkwuYBq0",
|
||||
"short_user_id": "1170866298",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "个人简介:\n来自湖北有名的将军故乡。\n红安,中国的革命圣地之一。战争年代,铜锣一响,四十八万红安儿女群起响应,打土豪分田地,翻身求解放。\n长期奋斗者。\n思想+行动可以让世界更加美好。",
|
||||
"nickname": "红安 店+",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_313e900012f9337e4d6d2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157816
|
||||
},
|
||||
{
|
||||
"comment_id": "7314038281887564544",
|
||||
"create_time": 1702932266,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2005141159416551",
|
||||
"sec_uid": "MS4wLjABAAAAUqF8Ry0BxaGdnV6Sq8PMUnFdJlSqvpmLjYiTCMaJqpr8YPz_0zBm9OWiovdWg2Pi",
|
||||
"short_user_id": "4109278893",
|
||||
"user_unique_id": "tiantianya8417",
|
||||
"user_signature": "",
|
||||
"nickname": "甜甜呀",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_02ccf277315c406f82a4e3da0d418b21.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157828
|
||||
},
|
||||
{
|
||||
"comment_id": "7313134549050950436",
|
||||
"create_time": 1702721828,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "104929990115",
|
||||
"sec_uid": "MS4wLjABAAAAuqOyrmQEOz1x9Vj8SpKhRYIEzWmlEE2d9IWs8rxO6Yw",
|
||||
"short_user_id": "1562353072",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "乐乐",
|
||||
"nickname": "浪子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b65988e05d92bc8d8646f7a5603dd421.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157841
|
||||
},
|
||||
{
|
||||
"comment_id": "7311694422092989218",
|
||||
"create_time": 1702386522,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2088686512517964",
|
||||
"sec_uid": "MS4wLjABAAAABfG6McvNnAdweV2KB1C2NhWpPuuQQliq2wKMP2qlOnF1xha1eGou7dv3dXJeuar5",
|
||||
"short_user_id": "2799183228",
|
||||
"user_unique_id": "xu_wu_",
|
||||
"user_signature": "修行之路修心!人类从起源到终结人类都在精神约束下!身边有因生活压力大而忧郁的或有轻生的朋友可以加我微信或来直播间交流。v x: xu_wu_he_ping_",
|
||||
"nickname": "虚无",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2dd290003fe2c9852bab6.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157853
|
||||
},
|
||||
{
|
||||
"comment_id": "7309826801545560842",
|
||||
"create_time": 1701951681,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "好看好看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2720622757546195",
|
||||
"sec_uid": "MS4wLjABAAAAwfpr-0zkV66YPUyPnKQSVkvBBe4mWcWbofnpkKXTTFkzJ7eXjazcW4BqYYveuMTS",
|
||||
"short_user_id": "74025170197",
|
||||
"user_unique_id": "74025170197",
|
||||
"user_signature": "轻宁娱乐\n喜欢➕点关注\n创业女生和她的姐妹们的日常\n一起见证\n轻宁品牌主理人\n关注我会穿搭,变美变美变美\n穿搭达人\n热爱生活\n火锅爱好者",
|
||||
"nickname": "被美女包围的暖暖酱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_629c76cf9b54185a4e2a7f8d277e9653.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157867
|
||||
},
|
||||
{
|
||||
"comment_id": "7309036922562102079",
|
||||
"create_time": 1701767775,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "多高啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4164566703420219",
|
||||
"sec_uid": "MS4wLjABAAAAsBDMcKrQtYFRQW4gKWCqiFwEdN7odQ_4VANEFviOEBUpWka8eKEZecL5CTsXjaF4",
|
||||
"short_user_id": "2806478322",
|
||||
"user_unique_id": "dyjtwstdiz7s",
|
||||
"user_signature": "",
|
||||
"nickname": "🌈🌈🌈🌈🌈🌈🌈🌈萨啦玛",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_f4a2f73325ba48fbb60b0df0fa19f0de.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157879
|
||||
},
|
||||
{
|
||||
"comment_id": "7307965118058513161",
|
||||
"create_time": 1701518226,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "1239864558491646",
|
||||
"sec_uid": "MS4wLjABAAAAENGw0ri8FMR-WomyE4WSLF7J7awhBa2cdwu5uOIOzJpQeo-g3vba2mxYbuJbBFHu",
|
||||
"short_user_id": "3582968007",
|
||||
"user_unique_id": "yasewang167266",
|
||||
"user_signature": "",
|
||||
"nickname": "亚瑟王",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_841718cdced34b10a873cfe85374c3fe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157892
|
||||
},
|
||||
{
|
||||
"comment_id": "7307854773226554138",
|
||||
"create_time": 1701492535,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "裙子没有了吗 还卖吗",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "58809040035",
|
||||
"sec_uid": "MS4wLjABAAAAJX3Pzbbnv0xAqQScSom7wH7bTEWfnZrShUup9XmviOs",
|
||||
"short_user_id": "6756000",
|
||||
"user_unique_id": "Yes_baby.",
|
||||
"user_signature": "",
|
||||
"nickname": "陽",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2a61f269c02b3f7dcae9123909a5517f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157905
|
||||
},
|
||||
{
|
||||
"comment_id": "7311960802318107401",
|
||||
"create_time": 1702448543,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "12632587677",
|
||||
"sec_uid": "MS4wLjABAAAA8gNIYFaWRkJDo1WVUAKr8x21Pe9KglICpIrMGu02Xrw",
|
||||
"short_user_id": "575998162",
|
||||
"user_unique_id": "12121dx",
|
||||
"user_signature": "各人有各人的修行",
|
||||
"nickname": "北一",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_52e85ff2414ee3ba4c3185ae7e5277a9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157918
|
||||
},
|
||||
{
|
||||
"comment_id": "7307067812576346916",
|
||||
"create_time": 1701309306,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "有点像钟丽缇",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "2700820986728791",
|
||||
"sec_uid": "MS4wLjABAAAArkO8G7dXkjdT89wPE39DV1mtHeJtVcgULeEXQskoi7OQrgt8Zdcpg0tCGmCG83TK",
|
||||
"short_user_id": "91803659880",
|
||||
"user_unique_id": "91803659880",
|
||||
"user_signature": "",
|
||||
"nickname": "南方无忧的汉子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_owEJE8iAD6Xe7DTApAwEfcWA712wnBAGBbrIeE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157933
|
||||
},
|
||||
{
|
||||
"comment_id": "7297640884924597002",
|
||||
"create_time": 1699114432,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[抠鼻][抠鼻][抠鼻]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "127992997359944",
|
||||
"sec_uid": "MS4wLjABAAAABG_pjnndgRde7OgZsr0shvqkh9YcGRhqIT13BxEPuuw",
|
||||
"short_user_id": "93993864004",
|
||||
"user_unique_id": "93993864004",
|
||||
"user_signature": "我妹妹脑袋不灵活,打扰之处请谅解。别乱指使人要出问题的。",
|
||||
"nickname": "杨优燕",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEfh2AbxGWgAwv7KBvANQz8DheANAL07nfBlEs.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157947
|
||||
},
|
||||
{
|
||||
"comment_id": "7296432504658445092",
|
||||
"create_time": 1698833080,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "丰满性感魅力!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "72549904634",
|
||||
"sec_uid": "MS4wLjABAAAAnLC7wbpqdtcbTQP29SW_nknKQMemxRgubMw5VBD1qO0",
|
||||
"short_user_id": "99531772",
|
||||
"user_unique_id": "865318326.",
|
||||
"user_signature": "",
|
||||
"nickname": "暮白寒窗雪",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_a0464f74fdd5d8cffa8ec51190410114.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157963
|
||||
},
|
||||
{
|
||||
"comment_id": "7289203833972130615",
|
||||
"create_time": 1697150030,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "眼中的光,只能埋藏在曾经,你,相信光吗",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "79792540877",
|
||||
"sec_uid": "MS4wLjABAAAAv-fk5eHy0x4jfjOghCBDN6aBpcQHp14sL9dk75CpWrY",
|
||||
"short_user_id": "150614428",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "二两笔墨债,挥笔赋诗华",
|
||||
"nickname": "StyleOnMe",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_26de0000501f42860c56c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157980
|
||||
},
|
||||
{
|
||||
"comment_id": "7279931911110443810",
|
||||
"create_time": 1694991253,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "哇,太美了,喜欢的那款[舔屏][舔屏][舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "98729632416",
|
||||
"sec_uid": "MS4wLjABAAAAOa0hxAA0ftUSayg6LgeECWrPNA4-tXn18i6EziuTjpc",
|
||||
"short_user_id": "970114540",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🌈🌈🌈视频同款全在橱窗🌟🌟🌟\n🍓🍓🍓每天分享实惠产品🍒🍒🍒\n❤️❤️❤️感谢抖音谢谢关注❤️❤️❤️\n😘😘😘商品持续更新中 …🔥🔥🔥",
|
||||
"nickname": "女皇零食🇨🇳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_owUsIACzyCFA71yfhAAQnAEWAAEStyvgPeIkCl.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157997
|
||||
},
|
||||
{
|
||||
"comment_id": "7309700868353196812",
|
||||
"create_time": 1701922363,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "98232682676",
|
||||
"sec_uid": "MS4wLjABAAAAmTJwi73Y_lkUxYiKpXI9aRdSOE68JQ8dS9Git-IyBS4",
|
||||
"short_user_id": "1286125284",
|
||||
"user_unique_id": "85122066688z",
|
||||
"user_signature": "百善孝为先。滴水之恩,泉水相报。",
|
||||
"nickname": "大表哥❤️",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_23f390000ce48d726a771.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158017
|
||||
},
|
||||
{
|
||||
"comment_id": "7272364493282935586",
|
||||
"create_time": 1693229315,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6686589698707590411",
|
||||
"content": "@会飞的肖申克 [尬笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "2802026696685855",
|
||||
"sec_uid": "MS4wLjABAAAAtWlQAx5C3DjLAap3HzvwVyH8p-11O2DKS5hiXiYrDW5XivAh-8QJsFz8rUbUSoZA",
|
||||
"short_user_id": "67783689910",
|
||||
"user_unique_id": "220909_Yy",
|
||||
"user_signature": "o_O",
|
||||
"nickname": "奶盖吐司🍞",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okHfaICQnzOR3EdCADbEALAAAe4gALBB1DM7sf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158120
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_6686589698707590411.md
Normal file
882
public/data/comments/video_id_6826943630775831812.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "6827035451342340103",
|
||||
"create_time": 1589543059,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "抖音里面都在说无所不能李子柒,其实她只是将原本老祖宗遗留下的文化传统进行传承,把原本我们认为复杂的东西简单化了,希望大家多多支持这种简单的文化输出![一起加油][一起加油][玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "20374",
|
||||
"user_id": "95546519552",
|
||||
"sec_uid": "MS4wLjABAAAA-xMwgOk-5XJ1WjGxlg9AkjMrBMl5xj65LQ5X0uUdKC0",
|
||||
"short_user_id": "1129761923",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "生活就是一道光\n请照亮你我他\n生活的温度来自于人间烟火\n请好好善待他\n心累了就停下,点个关注,点个赞再走,谢谢!",
|
||||
"nickname": "Alan🇨🇳奇少🐲",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMBc8xQAEeA8EDXfHK76heboA9nKBEAg9AuKjl.jpeg?from=2956013662",
|
||||
"sub_comment_count": "422",
|
||||
"last_modify_ts": 1711644158931
|
||||
},
|
||||
{
|
||||
"comment_id": "6827073766938951683",
|
||||
"create_time": 1589551981,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "李子柒的每一个视频都很轻松治愈,春有百花秋有月,夏有凉风冬有雪,若无烦事挂心头,便是人间好时节。[愉快][愉快][愉快]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "13657",
|
||||
"user_id": "105820382906",
|
||||
"sec_uid": "MS4wLjABAAAA7BLvXk4XwpteHsfGfMstZ2e5_l0STqpkDLfKYJlLPn0",
|
||||
"short_user_id": "1766313758",
|
||||
"user_unique_id": "xiojn0605",
|
||||
"user_signature": "",
|
||||
"nickname": "向海风.许愿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f22b736fa5292b97eccb3fee1b143bca.jpeg?from=2956013662",
|
||||
"sub_comment_count": "87",
|
||||
"last_modify_ts": 1711644158940
|
||||
},
|
||||
{
|
||||
"comment_id": "6827067349376450574",
|
||||
"create_time": 1589550485,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "抖音狠起来,李子柒都要限流[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "7499",
|
||||
"user_id": "61375444598",
|
||||
"sec_uid": "MS4wLjABAAAAWRnd_TGACkjPbORZI3kCUmhnmvLpEVJTmOovc5Y3GkU",
|
||||
"short_user_id": "142634028",
|
||||
"user_unique_id": "54188RJJ520",
|
||||
"user_signature": "顺其自然\n每天都是新的一天,加油朋友!",
|
||||
"nickname": "彭🀄️🪳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_9931815fdf0a924661d1a0262bd35bb5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "126",
|
||||
"last_modify_ts": 1711644158948
|
||||
},
|
||||
{
|
||||
"comment_id": "6827060446563500044",
|
||||
"create_time": 1589548880,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "每次看她视频都不是为了学怎么做菜,就是一种欣赏,一种向往,一种羡慕。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "175",
|
||||
"user_id": "58592739444",
|
||||
"sec_uid": "MS4wLjABAAAAiKBW-1HmlcqE6smsbKQFWKRnqIjDFG8SfDODrnO72BQ",
|
||||
"short_user_id": "5647218",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "西瓜🍉",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ba3b73a3bf624d64714495341aaa0ef8.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158955
|
||||
},
|
||||
{
|
||||
"comment_id": "6827059521853669387",
|
||||
"create_time": 1589548664,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "这就是古代人们常说的世外桃源吧舒适安逸[巧克力][巧克力]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "37",
|
||||
"user_id": "101142739455",
|
||||
"sec_uid": "MS4wLjABAAAA13ldR57OLpmxO-oh0paB87Qcs-6kphPzSljOWHvnJDc",
|
||||
"short_user_id": "1114224658",
|
||||
"user_unique_id": "meijiajiansh87",
|
||||
"user_signature": "❤️所有商品可以点击下方👇橱窗挑选哦\n🧡用心做好每一件衣服,坚持每天更新\n💚任何问题联系小店客服、私信必回超级宠粉\n💜感谢家人们的关注哦",
|
||||
"nickname": "卖舞蹈服的小姐姐",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_34218850fa0febb04e9e0e94bd9288d9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158963
|
||||
},
|
||||
{
|
||||
"comment_id": "6827032199649869835",
|
||||
"create_time": 1589542304,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "你出现在了我的政治语文期中试卷上,好棒棒![泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "30",
|
||||
"user_id": "63166055201",
|
||||
"sec_uid": "MS4wLjABAAAAKGqzb54j_4HFgsUv3CDpYS0fuIXKjZERTfzME0Wh3ek",
|
||||
"short_user_id": "42295511",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "祝你99",
|
||||
"nickname": "衮泥亚得",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b5db93ebe569c61e22d77f2523d9d874.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158971
|
||||
},
|
||||
{
|
||||
"comment_id": "6827055440632020999",
|
||||
"create_time": 1589547713,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "豌豆凉粉我们四川做的很好,我爸做了几十年了!想自己做了吃的,我可以教的!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22",
|
||||
"user_id": "109913481505",
|
||||
"sec_uid": "MS4wLjABAAAAzBW3ZuljH7RrHog-J3yp4KQGhRqZpSm3tj9GtJNiqkw",
|
||||
"short_user_id": "1907935605",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "85后的川妹子(辣妹子),\n2014年独自一人来到郑州,\n 有幸认识了很多朋友!\n感谢朋友对我帮助和支持,\n希望在抖音认识新的朋友!\n感谢朋友们关注!!!",
|
||||
"nickname": "🌈马红梅",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_1cb6a0008189989ee3e9f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158978
|
||||
},
|
||||
{
|
||||
"comment_id": "6827057039093547020",
|
||||
"create_time": 1589548086,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "雅致生活,多少人的向往",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "25",
|
||||
"user_id": "98671451137",
|
||||
"sec_uid": "MS4wLjABAAAAqw6NUn0kc-eQrZZQV2u2tiQGYwRGl8u-xJytd0I4A28",
|
||||
"short_user_id": "950728074",
|
||||
"user_unique_id": "junchengwang",
|
||||
"user_signature": "✨郡家之主·名慕森·人称郡城王/公子森\n✨一粒米香·一片橘甜·一口辣(腊)味\n✨土特产:食品生鲜·酒·茶等…土特产在下方“商品橱窗”·售后找客服\n✨品牌创始人·旗下品牌:苌公禾/郡城家族/郡家/郡家悠品/郡城王/郡城丽美\n\n✨junchengcoo郡总在农村·三农美食博主·记录乡村·分享农家美食·推荐家乡特产。欢迎走进 #苌公禾农业,加入『 #郡城家族 』好物严选产品供应链。",
|
||||
"nickname": "苌公禾农业",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3bf5acd093c534ae7acaf46f7133e434.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158986
|
||||
},
|
||||
{
|
||||
"comment_id": "6925119737102598151",
|
||||
"create_time": 1612380131,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "不搜索真的刷不到她 [思考]咋回事",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4",
|
||||
"user_id": "71621882287",
|
||||
"sec_uid": "MS4wLjABAAAAzvsA1vI_H6Jq3fizAkbvLLf2RK26CAOj9K8ANJHGQIA",
|
||||
"short_user_id": "90085461",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "一个人的铁马冰河🍃\n一个人的似水流年🍃🍃",
|
||||
"nickname": "高月半",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_673510abc6d1d7d2d0ebe8bdd7b8bdcc.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644158995
|
||||
},
|
||||
{
|
||||
"comment_id": "6827398196352827406",
|
||||
"create_time": 1589627517,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "我们考试题出了好几次李子柒了[泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "54",
|
||||
"user_id": "63468873267",
|
||||
"sec_uid": "MS4wLjABAAAA_tgg8_GB2R1GpKn0tS5pnQv9zn7QUDCcCmoh6gMELxs",
|
||||
"short_user_id": "2120514910",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "我糖炒栗子回来了!!!",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4I2h7EKUfe9ceI5OWDnzAABGdBbA48AtQAkDv.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159003
|
||||
},
|
||||
{
|
||||
"comment_id": "6827062912654606339",
|
||||
"create_time": 1589549454,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "不知道为什么,看李子柒的视频就觉得很舒服[耶][耶][耶]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "67",
|
||||
"user_id": "106684120826",
|
||||
"sec_uid": "MS4wLjABAAAAsSVL3gDTtg8jYVDWV8kOhf1uhYcZBOXdplf5rdj9rYo",
|
||||
"short_user_id": "1735710643",
|
||||
"user_unique_id": "YYQX_4_xxxx",
|
||||
"user_signature": "🌷",
|
||||
"nickname": "97-",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oc57ZAuUcCAzqhIlBWfNACgYYwXAOlE79AzDAe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159011
|
||||
},
|
||||
{
|
||||
"comment_id": "6827072305122852878",
|
||||
"create_time": 1589551639,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "硬是把现代生活过成古代诗人的样子,美又仙。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45",
|
||||
"user_id": "84568948963",
|
||||
"sec_uid": "MS4wLjABAAAAJV3e4h7CwKTWBko7wabOlIXGwwk8HxWmj9dbmZVADsI",
|
||||
"short_user_id": "187058502",
|
||||
"user_unique_id": "1988zoe",
|
||||
"user_signature": "我是个运气很好的女人,\n凡事发生必定对我有利。\n我吸收能量和好运",
|
||||
"nickname": "广东客家人在青城",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oQAfA2cSPCHU5AUDUeHFwfhyfI0AoYAATt2ZuA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159018
|
||||
},
|
||||
{
|
||||
"comment_id": "6827045677822935053",
|
||||
"create_time": 1589545439,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "好仙",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "82",
|
||||
"user_id": "4234910190277763",
|
||||
"sec_uid": "MS4wLjABAAAAbbHFYkT6L24L0IKp2kXKOTOxTfqaAwM4bMwfEvxJyEU4_5mDNGe3G3NyYGtpaQed",
|
||||
"short_user_id": "2318129346",
|
||||
"user_unique_id": "kenny_gc",
|
||||
"user_signature": "餐桌上的小日子\n给女朋友做饭吃\n商务: littlekenny_ (注来意)",
|
||||
"nickname": "肯尼的饭桌",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_30e30000021d2fac2d925.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159027
|
||||
},
|
||||
{
|
||||
"comment_id": "6827034050935848960",
|
||||
"create_time": 1589542734,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "漫山青竹绕梯田,白鹭嬉戏觅食闲。余生不念高楼处,只恋农家半亩田。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "37",
|
||||
"user_id": "2361402326264909",
|
||||
"sec_uid": "MS4wLjABAAAAhAERSgbDggK0qkaG-Cq0FJxuZVgBFzKhBN7PrqcjphYV7CXcFtBHM3Kyim5ax8VT",
|
||||
"short_user_id": "2299799359",
|
||||
"user_unique_id": "tong26220569",
|
||||
"user_signature": "品味不一样的生活",
|
||||
"nickname": "流通",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_a5a94577220d4174874cc940828aef51.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159034
|
||||
},
|
||||
{
|
||||
"comment_id": "6827069492708196364",
|
||||
"create_time": 1589550986,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "🌻 🌻 🌻\n🌈 🌈 🌈李子柒=孝心+颜值+吃苦耐劳+心灵手巧做自己喜欢的事+热爱学习强大自己的各项技能+人间仙境诗情画意的精致烟火生活=浅夏花开,追光逐梦",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "70",
|
||||
"user_id": "105001102246",
|
||||
"sec_uid": "MS4wLjABAAAACDz2dWpZfMlH1QfJvJxhs_i0sNrX0_o-fia9KBopyGE",
|
||||
"short_user_id": "2965201723",
|
||||
"user_unique_id": "xln228928",
|
||||
"user_signature": "🌻\n🌈 让自己变得更美好,可以解决一切问题。 \n\n小龙女的美好使命:与全球互动,跨越种族与时空的分享,倡导大家一起来打造全世界最美好的朋友圈,让世界因为有我们,而变成更美好幸福的乐园!\n \n小龙女简介:1976年农历二月三十出生,做过美工,做过设计,开过电脑职业培训学校,开过设计公司,开过个人形象交谊沙龙……",
|
||||
"nickname": "小龙女的美好幸福世界",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ooCOAhzlneEAUAsAIlDnULbEQANegJO0ADtZN9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159042
|
||||
},
|
||||
{
|
||||
"comment_id": "6827055274998644751",
|
||||
"create_time": 1589547675,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "看到李子柒的锁骨我羡慕了[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "46",
|
||||
"user_id": "99589403245",
|
||||
"sec_uid": "MS4wLjABAAAALzLtCD-1gQxkMJATb4VlBLqgzYXPTAOOR2pNgkMjqF8",
|
||||
"short_user_id": "1009031182",
|
||||
"user_unique_id": "XK071014",
|
||||
"user_signature": "懒癌晚期患者",
|
||||
"nickname": "雾里看牛马",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_91ffae1089d941ee9c2ea2322e2da099.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159050
|
||||
},
|
||||
{
|
||||
"comment_id": "6827059391200722951",
|
||||
"create_time": 1589548632,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "每次我都先静下来,在看子柒的视频[玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "55",
|
||||
"user_id": "95332506134",
|
||||
"sec_uid": "MS4wLjABAAAAq3c33t5P5JbZL7L3FeTpo-n6-FJ_wlHEQC_2RiGC4Hw",
|
||||
"short_user_id": "794150787",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "V陆O叁2捌0贰漆丝",
|
||||
"nickname": "爱理财的宝总😄",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_51d4c85656379d76065b59ef2c3e7eac.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159058
|
||||
},
|
||||
{
|
||||
"comment_id": "6827051005298376711",
|
||||
"create_time": 1589546680,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "豌豆生南国,春来发几枝,愿君多采撷,此物最子柒",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "24",
|
||||
"user_id": "94248851979",
|
||||
"sec_uid": "MS4wLjABAAAA9PQHksB-VzB7DMTjU3xSaxdNqwUkf0m2xBW5G6tzF1g",
|
||||
"short_user_id": "390031680",
|
||||
"user_unique_id": "yy18875720505",
|
||||
"user_signature": "如果你真的愿意去努力,你人生最坏的结果也不过是大器晚成。",
|
||||
"nickname": "吉吉小轴",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2ce39000435fbe4931dd5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159066
|
||||
},
|
||||
{
|
||||
"comment_id": "6827054982425247744",
|
||||
"create_time": 1589547607,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "今晚考试,作文材料有你,快过来看看你吧,我也是醉了[泪奔][泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "44",
|
||||
"user_id": "3865487054740205",
|
||||
"sec_uid": "MS4wLjABAAAAjR4YxnZL4gZnKBoioSmrkMSGg8KEf8E5Jw8zm0VgjJajlG6kDqVaZG8k7CDeSMJP",
|
||||
"short_user_id": "2358765962",
|
||||
"user_unique_id": "63241075544",
|
||||
"user_signature": "",
|
||||
"nickname": "111222333aier",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159073
|
||||
},
|
||||
{
|
||||
"comment_id": "6827038831435956228",
|
||||
"create_time": 1589543848,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "这锁骨厉害了,吃的那么好,怎么可以这么瘦[大哭]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "44",
|
||||
"user_id": "59384279577",
|
||||
"sec_uid": "MS4wLjABAAAAPnIutNgBhMbYpwh4Y71gZUyHeJOmdwVHEXA03SqXWNs",
|
||||
"short_user_id": "692616573",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "手执烟火以谋生,且停 且忘 且随风!",
|
||||
"nickname": "☆浅夏丿初晴",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ok5A0ChgW3zAe7g9KoA3fGMAtGNADyIABaEwja.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159080
|
||||
},
|
||||
{
|
||||
"comment_id": "7282264402358141751",
|
||||
"create_time": 1695534320,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "@倒数第一(6m13 好看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "492201884785501",
|
||||
"sec_uid": "MS4wLjABAAAA0JrqM-jtEFKsEGgilVqJPLDQOrk8ZRL7K83e-Ly40C0",
|
||||
"short_user_id": "49570717480",
|
||||
"user_unique_id": "49570717480",
|
||||
"user_signature": "",
|
||||
"nickname": "醉皇",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oYxIg58EmcAPA5yEjfhLAHhAkzKJNbAmeAC5DC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159859
|
||||
},
|
||||
{
|
||||
"comment_id": "7278325873831838521",
|
||||
"create_time": 1694617311,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "[比心][比心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "93987486302",
|
||||
"sec_uid": "MS4wLjABAAAA3Q-ySMMjdAnbHV6LZjNxMafEEFDVZorFp-U3k082umY",
|
||||
"short_user_id": "384425826",
|
||||
"user_unique_id": "Ai1ing.",
|
||||
"user_signature": "吃好喝好洗个澡\n看剧撸猫全球跑",
|
||||
"nickname": "拾二二",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_91fa1dc45f450b8154c1e57e01fcbb4a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159881
|
||||
},
|
||||
{
|
||||
"comment_id": "7247065037000114978",
|
||||
"create_time": 1687338831,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "好喜欢这种生活",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "3812723572088232",
|
||||
"sec_uid": "MS4wLjABAAAAz2-3NL9j-Pnt0ua1EoqZSUZAZ_Haeh7U1QYrhLH0ypsc8tALSQZZ3HktkFj3R-XU",
|
||||
"short_user_id": "2804930304",
|
||||
"user_unique_id": "dyic80l3icf5",
|
||||
"user_signature": "",
|
||||
"nickname": "婷子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_1d0b00bf554f4a1e8958858e505d5f7c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159911
|
||||
},
|
||||
{
|
||||
"comment_id": "7193854752487277370",
|
||||
"create_time": 1674949841,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "一山一水,一草一木,是我向往的生活",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2374571842870952",
|
||||
"sec_uid": "MS4wLjABAAAA4WCIaB-r1sH9JfBy2o_7rOMDkdwIhnjVj2xyYvwoqzjWhL1xVFWbtwEw-3qCVy7I",
|
||||
"short_user_id": "4127630863",
|
||||
"user_unique_id": "xiaobao43568",
|
||||
"user_signature": "",
|
||||
"nickname": "小宝",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3792_5112637127.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159940
|
||||
},
|
||||
{
|
||||
"comment_id": "7117110920002224932",
|
||||
"create_time": 1657081523,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "[西瓜][西瓜][西瓜][西瓜][西瓜][西瓜]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100843671639",
|
||||
"sec_uid": "MS4wLjABAAAA61sv4LQ05ld6NRI5lwEZWHoxiR4Q7KBL3N4XzT3lJW0",
|
||||
"short_user_id": "1099209683",
|
||||
"user_unique_id": "jianruhong_",
|
||||
"user_signature": "痛并快乐着",
|
||||
"nickname": "崩溃的鹿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oU8zeA7lqA1YAJwADxXgK9MCDEobgeJAAX0gQn.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159968
|
||||
},
|
||||
{
|
||||
"comment_id": "7115259609484624677",
|
||||
"create_time": 1656650481,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "李子柒像是活在诗里的人一般存在",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "92683455257",
|
||||
"sec_uid": "MS4wLjABAAAACrnh44I4ALTvchDzzWkPjxklq7Sx91jEB4MDn-9aTas",
|
||||
"short_user_id": "346519952",
|
||||
"user_unique_id": "idi1214",
|
||||
"user_signature": "@白敬亭\n@地蛋\n去你m的",
|
||||
"nickname": "零温度^",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_9a364183f22d9f29039ba39d3e3ee367.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159993
|
||||
},
|
||||
{
|
||||
"comment_id": "7112804815533622056",
|
||||
"create_time": 1656078928,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "[机智]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "70950850735",
|
||||
"sec_uid": "MS4wLjABAAAA3M7UwnreR5QLvF_9FXSalfFq-oZIf1btJgcexV_HYcs",
|
||||
"short_user_id": "1074911151",
|
||||
"user_unique_id": "L.H.1.2.3.",
|
||||
"user_signature": "这里介绍不了我.",
|
||||
"nickname": "w-",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b618dcbcb1a0fba17e1e4fc4e118de5b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160020
|
||||
},
|
||||
{
|
||||
"comment_id": "7051576889936298792",
|
||||
"create_time": 1641823191,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "喜欢她家的花",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "96977544138",
|
||||
"sec_uid": "MS4wLjABAAAAU-Z2SeY2qTE5AYpvoVj1WulRU7vkCXHPwWx6QH8rNMo",
|
||||
"short_user_id": "2060864838",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "小冰潼",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ccd78680baf3a0766f006d78cfb41950.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160045
|
||||
},
|
||||
{
|
||||
"comment_id": "7034030188405146379",
|
||||
"create_time": 1637737780,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "抖爸爸带上我和李子柒火一把[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "3105471284920219",
|
||||
"sec_uid": "MS4wLjABAAAA9VucM6ZN3ox10UVM2JxZvu6u6-C-UI0eZxWfwPscgxTOevT2kn2VM3-I2x-JfhS4",
|
||||
"short_user_id": "60069186683",
|
||||
"user_unique_id": "jinyueyue1234567",
|
||||
"user_signature": "",
|
||||
"nickname": "jinyueyue1234567",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/c16000003f97583dac4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160072
|
||||
},
|
||||
{
|
||||
"comment_id": "7030957222298108683",
|
||||
"create_time": 1637022301,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "[666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2282184230311384",
|
||||
"sec_uid": "MS4wLjABAAAAqZQo450rmU6HMGtUOfrH6AaioVJmlbZfsJIUi6crp921rldDzRY-Uq79G1Imy9Wa",
|
||||
"short_user_id": "2340713460",
|
||||
"user_unique_id": "34453126410",
|
||||
"user_signature": "",
|
||||
"nickname": "hongzhong703",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160090
|
||||
},
|
||||
{
|
||||
"comment_id": "7002378909447095040",
|
||||
"create_time": 1630368392,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "记得之前买过御食园做的这个",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2014722822770319",
|
||||
"sec_uid": "MS4wLjABAAAALxaqy-QtnsEBPOaq2VAAz0V-0s5ZV6jIRW4Ne1xwoULQAch0FOplaQGJg6TZyloy",
|
||||
"short_user_id": "97480057101",
|
||||
"user_unique_id": "97480057101",
|
||||
"user_signature": "",
|
||||
"nickname": "香蕉大盒子👿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_30ec634adbde40c88fa82a56460fc51e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160108
|
||||
},
|
||||
{
|
||||
"comment_id": "7000711479196386082",
|
||||
"create_time": 1629980161,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "果然我记得发过但是好不错",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "73702698786",
|
||||
"sec_uid": "MS4wLjABAAAAIplpKNGZfKWRlcENnUAIGdlF2Z8F4z7pK7_oe002C4M",
|
||||
"short_user_id": "201996768",
|
||||
"user_unique_id": "20120408wusehun",
|
||||
"user_signature": "💛💛💛",
|
||||
"nickname": "难捉鱼",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_5f4ba28e79ec815c7487c76f0636e90e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160127
|
||||
},
|
||||
{
|
||||
"comment_id": "6989468700483470092",
|
||||
"create_time": 1627362502,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "这是什么花?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "73376372404",
|
||||
"sec_uid": "MS4wLjABAAAA2hB95vOWu090VRWR2YjghisZ_dB-bnr8LUxbaUN9Sys",
|
||||
"short_user_id": "115267631",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "喜欢音乐,旅行",
|
||||
"nickname": "蔓蔓青萝",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ooxflACbEzeCDrATUNKOYIDFyaAdWzYzbAhgAA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160144
|
||||
},
|
||||
{
|
||||
"comment_id": "6986174103115875085",
|
||||
"create_time": 1626595416,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "把枯燥的生活做成一种文化,这是常人不能接受的吧,这样的生活虽然向往,或许不是每个人都能够坚持。男耕女织更多存在记忆中了。很喜欢这样的积极生活,给人充满了希望,生活不仅是柴米油盐酱醋茶",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "100329020733",
|
||||
"sec_uid": "MS4wLjABAAAAIw0OcdKP_Ns-XmLTwDT4ze1uPrYsulOoahdO0AEeJPE",
|
||||
"short_user_id": "1359983989",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "^_^^_^^_^",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c7d2f435599549cf8c038ced06f8558e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160167
|
||||
},
|
||||
{
|
||||
"comment_id": "6984376580915118859",
|
||||
"create_time": 1626176898,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "都没看懂凉粉咋个做的",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2797626194658887",
|
||||
"sec_uid": "MS4wLjABAAAAqhQqRnAzSS-OV8_6MAyuZBBBILWcWrFZvhszIhcXSw5AxBhHOTk7VOrIK1jfcgjq",
|
||||
"short_user_id": "89173141814",
|
||||
"user_unique_id": "89173141814",
|
||||
"user_signature": "1.我们只讲述供应链管理咨询,冷链物流/冻品食材/农产品的故事\n2.结有道之友断无情之人,先小人后君子。\n3.联系邮箱:martinyummy@outlook.com",
|
||||
"nickname": "绵阳大笨象",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oUv5QA8UABE9euVABAnAgeAd7KMAnEABAEDrbe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160196
|
||||
},
|
||||
{
|
||||
"comment_id": "6981006095536341795",
|
||||
"create_time": 1625392147,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "屋顶的🌹也太好看了吧",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "71553795448",
|
||||
"sec_uid": "MS4wLjABAAAA6oZ_ebIGghX5HHV4XT3PGQj5JIFTptAlds2vZvn8DrQ",
|
||||
"short_user_id": "868240834",
|
||||
"user_unique_id": "394666993ZQZ",
|
||||
"user_signature": "何时仗尔看南雪 我与梅花两白头",
|
||||
"nickname": "可",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_a4b065e54db15592dc025982f90abab5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160224
|
||||
},
|
||||
{
|
||||
"comment_id": "6971231875319268130",
|
||||
"create_time": 1623116410,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "李子柒竟然不怕🐍蛇?[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "158765702191903",
|
||||
"sec_uid": "MS4wLjABAAAAq8ck64ve15fjk5D_cPcwxiGa6Dr_VcQzjTg0UF-I-zc",
|
||||
"short_user_id": "4168073562",
|
||||
"user_unique_id": "kyl314",
|
||||
"user_signature": "",
|
||||
"nickname": "子悦~",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_715fb5eb6c2be1708aae43957a1369dd.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160257
|
||||
},
|
||||
{
|
||||
"comment_id": "6969233776778085158",
|
||||
"create_time": 1622651196,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "我爱@李子柒",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "844036815984333",
|
||||
"sec_uid": "MS4wLjABAAAAsj4pvuC78aleiNxL3WY4vSWd8AtuzPTPvKvyZxBvWx0",
|
||||
"short_user_id": "3840040446",
|
||||
"user_unique_id": "lxhlzq545597",
|
||||
"user_signature": "不孝子 玲珑归 食百谷 言草堂 名曰-百家草堂\n三📖六🎁 🍑李🈵️天下\n白身卧龙青云志,仙李隐凤济生民\n以身载道渡苍穹,九洲皆是门生客",
|
||||
"nickname": "玲珑食百谷北斗落星河",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_731088e083f5a7b5b8a1da84bcf33d82.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160286
|
||||
},
|
||||
{
|
||||
"comment_id": "6955480149546664704",
|
||||
"create_time": 1619448923,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "太喜欢你了真的[送心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3531221425993037",
|
||||
"sec_uid": "MS4wLjABAAAAYJDYa4wzWKUXUZHWDum0Aybu0g73RExEQPGfY3Sv76ZdWzfa1WTaNUC4hmvZxFLm",
|
||||
"short_user_id": "2316012950",
|
||||
"user_unique_id": "hhhhha_11",
|
||||
"user_signature": "",
|
||||
"nickname": "hhhhha_11",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/c16000003f97583dac4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160316
|
||||
},
|
||||
{
|
||||
"comment_id": "6941695869943595012",
|
||||
"create_time": 1616239521,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6826943630775831812",
|
||||
"content": "[晕][晕][晕]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "51847960397",
|
||||
"sec_uid": "MS4wLjABAAAAWLZ67oWBrq5ILjpkonVrlh5gtwhSwYTgV6vN3Rf2Agg",
|
||||
"short_user_id": "1749954095",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "真.善.美",
|
||||
"nickname": "宗楷",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okWsztHNAhuDIxiilAygfCskE7ekAA4IBAsA7r.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160345
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_6826943630775831812.md
Normal file
882
public/data/comments/video_id_6882368275695586568.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "6882375794808193031",
|
||||
"create_time": 1602427991,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "橱窗全都有[白眼]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "260041",
|
||||
"user_id": "60043717321",
|
||||
"sec_uid": "MS4wLjABAAAAI-lEgbXAy9AcrRR_ujh1DfyWRuh1ZjxLdzmjMD948KY",
|
||||
"short_user_id": "13632088",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "承蒙厚爱 万分感激🙏🏻\n视频均为自己创作 未签约 不直播\n工作v❤ orangelaby",
|
||||
"nickname": "小橙子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_310e3000a130132511b54.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1299",
|
||||
"last_modify_ts": 1711644161359
|
||||
},
|
||||
{
|
||||
"comment_id": "6882664395344756749",
|
||||
"create_time": 1602495186,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "妲。。妲。。。妲己[泪奔][泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "14999",
|
||||
"user_id": "3315760121280648",
|
||||
"sec_uid": "MS4wLjABAAAAViXi3WkaiGv3hEECapoGCzTepLt1WYMX61V-yoKBfGSqI0Y8VJkpPVQk561rARl_",
|
||||
"short_user_id": "3658729260",
|
||||
"user_unique_id": "ff88086666",
|
||||
"user_signature": "你那么可爱,应该要遇见我\n🍠:飞飞LF\n🧣:Frank飞飞飞\n商务合作:OSTSW002",
|
||||
"nickname": "飞飞LF",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_30ffc00091d0c066b8dbc.jpeg?from=2956013662",
|
||||
"sub_comment_count": "65",
|
||||
"last_modify_ts": 1711644161372
|
||||
},
|
||||
{
|
||||
"comment_id": "7224906548564280120",
|
||||
"create_time": 1682179659,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "23年了,还是忍不住回来看[舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "14859",
|
||||
"user_id": "94276001953",
|
||||
"sec_uid": "MS4wLjABAAAAA0AgI-9HTUiO9P9v1LEUoU9pE7aCkm6sr25SsTg7kqc",
|
||||
"short_user_id": "571693805",
|
||||
"user_unique_id": "Meta_Allez",
|
||||
"user_signature": "每天都有日出",
|
||||
"nickname": "will's s s",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocRQecyYBnPGFGS1fE8IAfgD7AEtAi1bBAELAp.jpeg?from=2956013662",
|
||||
"sub_comment_count": "218",
|
||||
"last_modify_ts": 1711644161394
|
||||
},
|
||||
{
|
||||
"comment_id": "6885314420810350599",
|
||||
"create_time": 1603112192,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "姜子牙咽了咽口水,推开了身边的马招娣[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "18752",
|
||||
"user_id": "63199670663",
|
||||
"sec_uid": "MS4wLjABAAAA9KJFeeTuAD7znlks9kZ1ZddzaBeUDGz015k6ciep6uI",
|
||||
"short_user_id": "36711440",
|
||||
"user_unique_id": "wsnbb950712",
|
||||
"user_signature": "其实很多时候,我的内心是脆弱的,\n看某个视频,听某首歌,想某个人,\n你不会懂,因为你从来没有体会过!",
|
||||
"nickname": "与风逐⁹⁷³",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o08A2ChkWyzAe3gP67APfckAtEDADyIAndEzdx.jpeg?from=2956013662",
|
||||
"sub_comment_count": "116",
|
||||
"last_modify_ts": 1711644161416
|
||||
},
|
||||
{
|
||||
"comment_id": "7068224374671409934",
|
||||
"create_time": 1645699233,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "22年了还是忍不住回来看看朕的妲己[舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "82161",
|
||||
"user_id": "103022166254",
|
||||
"sec_uid": "MS4wLjABAAAAjjjWZ2xEAzEgNoEOWb6rRTSq11R9-yMDDObnqhqgCps",
|
||||
"short_user_id": "2809751773",
|
||||
"user_unique_id": "ChenSiMiZuiWenR",
|
||||
"user_signature": "改变的确很难 但结果值得冒险",
|
||||
"nickname": "阿铭",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2dbd22b5de6d4aacfa34e195f94218c3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "969",
|
||||
"last_modify_ts": 1711644161436
|
||||
},
|
||||
{
|
||||
"comment_id": "7310579506895864591",
|
||||
"create_time": 1702126934,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "马上都24年了。还是对爱妃念念不忘",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "116",
|
||||
"user_id": "1719225122567373",
|
||||
"sec_uid": "MS4wLjABAAAABCMDHB6c6ns8txNPxKsek2o4SB0pkxeEbXLOWGRaS6Myt2sFSDY6Lb9LdVZJz24Y",
|
||||
"short_user_id": "2354189926",
|
||||
"user_unique_id": "Hi.shen",
|
||||
"user_signature": "",
|
||||
"nickname": "√√",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_2b98fce3996542e29b3d0db751515ecd.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161460
|
||||
},
|
||||
{
|
||||
"comment_id": "6882435469448167439",
|
||||
"create_time": 1602441938,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "好绝一女的[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "36052",
|
||||
"user_id": "62214495481",
|
||||
"sec_uid": "MS4wLjABAAAAAKegniKnbrr_ERmpScFfl0oK_rA21ftng02nftH1BX4",
|
||||
"short_user_id": "359436392",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "💗对我而言,仿妆的意义是欣赏,是喜欢,又或是一场充满仪式感的致敬。努力做最真实的仿妆,感谢关注与支持🙆\n⭐独立视频创作者\n⚠️未签约任何mcn公司,并未与任何mcn公司建联合作❗没有开设线上线下店铺❗没有开展线上线下培训❗抖音唯一账号,无小号,无助理客服账号,切勿相信其它账号私信❗❗\n👔商务:bobo_zyq\n(不直播,不参加线下活动,请注明品牌及来意)",
|
||||
"nickname": "bobo最洋气",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_102f02e991da4dc095f3c866ac7cc3af.jpeg?from=2956013662",
|
||||
"sub_comment_count": "104",
|
||||
"last_modify_ts": 1711644161503
|
||||
},
|
||||
{
|
||||
"comment_id": "6882670326812475396",
|
||||
"create_time": 1602496570,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "太好看了吧[不失礼貌的微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "20148",
|
||||
"user_id": "98007612599",
|
||||
"sec_uid": "MS4wLjABAAAAuJC8v2puvQ5Byzbe7z4bvDmLD_hK5ASdjGCae6TCEf8",
|
||||
"short_user_id": "903637834",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "主营米粒的情感故事,搞笑女的日常在这里@辣鼻小象 \n🈴️:mybd1289",
|
||||
"nickname": "盛夏光年",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_d32459eccb5cf74e5a85c9c117b57883.jpeg?from=2956013662",
|
||||
"sub_comment_count": "83",
|
||||
"last_modify_ts": 1711644161549
|
||||
},
|
||||
{
|
||||
"comment_id": "7315668725595833142",
|
||||
"create_time": 1703311865,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "快24年了 忘不掉朕的小妲己[灵机一动][色][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "125",
|
||||
"user_id": "1521339943104046",
|
||||
"sec_uid": "MS4wLjABAAAA0sRm8c7P53H6MXrJgLh70kkAaP_fyK70qJHJH63smmUU-TPqjL1vk76Hy8G99Jvw",
|
||||
"short_user_id": "3605410156",
|
||||
"user_unique_id": "yangyaxin0108.",
|
||||
"user_signature": "公主请天天开心",
|
||||
"nickname": "ya_ya^🐯",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oYsT9kAr6H7DAhrfAAQAjONbl7pgqeInAOCCgc.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161600
|
||||
},
|
||||
{
|
||||
"comment_id": "6882395255635820552",
|
||||
"create_time": 1602432526,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "太美了[玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32143",
|
||||
"user_id": "82545214697",
|
||||
"sec_uid": "MS4wLjABAAAAm6L2QWUTcGxezwoQbB2f_7RVQ_FIAMUAn9MHEvh7b-8",
|
||||
"short_user_id": "172564402",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "有四只可爱的毛孩子🐶lucky&happy&honor&安安\nhappy:哈士猪\nlucky :比熊小串串\nhonor:哈士猪的小儿子\n安安:哈士猪的大女儿\n分享快乐,狗狗日常\n谢谢你的关注❤️ \n商务:llj1103438785(本人,其中ll是小写LL)\n商务:tktk3088\n商务:AutoGangs(非本人)",
|
||||
"nickname": "妮可小姐姐",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2cf7b0000326dc754cd38.jpeg?from=2956013662",
|
||||
"sub_comment_count": "117",
|
||||
"last_modify_ts": 1711644161645
|
||||
},
|
||||
{
|
||||
"comment_id": "6882416016795385860",
|
||||
"create_time": 1602437390,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "这也…太好看了吧",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "7613",
|
||||
"user_id": "874845197835179",
|
||||
"sec_uid": "MS4wLjABAAAAgkav1whwHS3lDrZL4jptC0636RX5nJNGHrLHa8jMj3k",
|
||||
"short_user_id": "3000866291",
|
||||
"user_unique_id": "Aa1079821154",
|
||||
"user_signature": "让生活变有趣\n商务&合作:GG1079821154\n粉丝&养猫:xiaolongbao1201",
|
||||
"nickname": "小笼包是只猫",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2fa1c00005dd55ca52ff3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "24",
|
||||
"last_modify_ts": 1711644161776
|
||||
},
|
||||
{
|
||||
"comment_id": "6882406569905537028",
|
||||
"create_time": 1602435178,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "这也太好看了!!!!!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "36397",
|
||||
"user_id": "215155851670909",
|
||||
"sec_uid": "MS4wLjABAAAAlfELaQ0SptK7GbGEoDrAGqWPQ_P0s7WBNxWC97qq4MI",
|
||||
"short_user_id": "2292490955",
|
||||
"user_unique_id": "sinan123123",
|
||||
"user_signature": "爱旅游更爱汽车🚗\n带你了解更多实用的汽车小知识\n商务🛰️A8686588888",
|
||||
"nickname": "佳宝聊车",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4AggD4A9jbQmAYbFAIAAVyGTA4nAC8LC0fAeB.jpeg?from=2956013662",
|
||||
"sub_comment_count": "120",
|
||||
"last_modify_ts": 1711644161812
|
||||
},
|
||||
{
|
||||
"comment_id": "7349721098727146279",
|
||||
"create_time": 1711240302,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "不是,我以为姜子牙是2023的,没想到是2020了[宕机]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4",
|
||||
"user_id": "4040039226422187",
|
||||
"sec_uid": "MS4wLjABAAAAADR0q7pHVfuEEELSpLvNMtiRAYfMB0NW8NqgNTQUOYSaY8I3E0UZ2BRGo0QBltw7",
|
||||
"short_user_id": "29661689919",
|
||||
"user_unique_id": "29661689919",
|
||||
"user_signature": "社恐 社交,社牛,什么都玩,我是人,讨厌上学\n上课想睡觉无聊,想回家,回家无聊的要死\n永挂@阿姩. @欣皖苏 @菜鱼很好琴 \n互关bb",
|
||||
"nickname": "倩川温",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okAB9VXNezhpACAbCUzEldfhAqDAgALE5rLAIA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161846
|
||||
},
|
||||
{
|
||||
"comment_id": "7350935073316684596",
|
||||
"create_time": 1711522948,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,还是忍不住回来看[求抱抱][求抱抱][求抱抱]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "60463500317",
|
||||
"sec_uid": "MS4wLjABAAAAauUpblqLp_z88OFechRV-fgZ_HZZYHg_PLVd4xWnUQg",
|
||||
"short_user_id": "45339296",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "每天都开开心心的呦~🥳",
|
||||
"nickname": "ᰔᩚ.肉肉",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_81ab6be45f07a6aa67b00cb99722fe14.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161876
|
||||
},
|
||||
{
|
||||
"comment_id": "7349415897553339175",
|
||||
"create_time": 1711169237,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "原来已经4年了[捂脸][捂脸][捂脸][捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "1207714637153258",
|
||||
"sec_uid": "MS4wLjABAAAAqlQqWbl3oRxr80Q8dxXiI3nl365Us-cDvYeofR5maVDcIXVPOJ_DHxB_UkF8uQa8",
|
||||
"short_user_id": "84489334180",
|
||||
"user_unique_id": "84489334180",
|
||||
"user_signature": "别想PUA我 以我的智商 根本听不懂",
|
||||
"nickname": "香菜要我命a",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osoAA2KDUIAx8AOfHdH6bbApygDXxCnDlEU9Ae.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161907
|
||||
},
|
||||
{
|
||||
"comment_id": "6882755969844559872",
|
||||
"create_time": 1602516513,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "姜子牙:我能活到现在 就是见不到你 太美了[泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "36",
|
||||
"user_id": "72350157849",
|
||||
"sec_uid": "MS4wLjABAAAANQy7UtoSo8U0rr0QjLttaOmhtJgc3xi06jOCTnIlKkQ",
|
||||
"short_user_id": "101976244",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "😍😍",
|
||||
"nickname": "HenG",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oYNn6AlADHfAQUeglWsAPVabyqW9CiA8jIA8j7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161928
|
||||
},
|
||||
{
|
||||
"comment_id": "6885288466327519247",
|
||||
"create_time": 1603106152,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "这眼睛也太迷人了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "112",
|
||||
"user_id": "97322210406",
|
||||
"sec_uid": "MS4wLjABAAAA0u1ISNBKZGamlqkTaZvYX_FvTob3TqfeqU55Rrbdcao",
|
||||
"short_user_id": "2940065564",
|
||||
"user_unique_id": "yan6600760",
|
||||
"user_signature": "喂喂,我是高泰明",
|
||||
"nickname": "懒羊羊 ^",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oQzJAhJAEII37f2AaNZNCIlnvuARCegg5yEJAA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161952
|
||||
},
|
||||
{
|
||||
"comment_id": "6925786416127459342",
|
||||
"create_time": 1612535311,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "哪个干部能经得起这样的考验",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "65",
|
||||
"user_id": "63114189350",
|
||||
"sec_uid": "MS4wLjABAAAAJpERir2GLuJe62dDV4pltJ0pz4awuOP3L1NZKRBVRm4",
|
||||
"short_user_id": "35622595",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "人参蘸大酱",
|
||||
"nickname": "吴彦差点祖 🪳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_1c02488d756e4f22ae92c2341a008bb9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161975
|
||||
},
|
||||
{
|
||||
"comment_id": "6884448510780162059",
|
||||
"create_time": 1602910585,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "姜子牙:“公豹,这不关我的事”",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "135",
|
||||
"user_id": "97633835585",
|
||||
"sec_uid": "MS4wLjABAAAAvVgT0LjHaY5vy7aQZQb6SODddUQUz-55qOQkXG16BmQ",
|
||||
"short_user_id": "872982143",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "老仙女",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4fab6e0783d940b8a531a4fe3e3253c1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161997
|
||||
},
|
||||
{
|
||||
"comment_id": "7349493802199302921",
|
||||
"create_time": 1711187376,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,還是忍不住的看這個,真的拍的太有感覺了,真的像妲己[捂脸][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "97777983965",
|
||||
"sec_uid": "MS4wLjABAAAAJCpd-4HUM8IdPIpES-0AVFTXe8zqDXPkdkjCu7idEd4",
|
||||
"short_user_id": "880166090",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "漆黑的蛞蝓",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oITSIjgIhgzA6CDfShC0DyQDAAZAeAAAEScHNM.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162018
|
||||
},
|
||||
{
|
||||
"comment_id": "6882746737036050446",
|
||||
"create_time": 1602514357,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "这个皮肤这个身材,简直爱了,我一个女的,都爱死了[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "84",
|
||||
"user_id": "1151941060859870",
|
||||
"sec_uid": "MS4wLjABAAAAXiYcQin_wFP62ESBRswpnEawILQW6Vp9p7pQ8k2lKorPHLHQgMjdT3ZeEnZgl9ju",
|
||||
"short_user_id": "3729963653",
|
||||
"user_unique_id": "dybdqr6eo4rh",
|
||||
"user_signature": "希望大家可以喜欢我\n这是我的新号\n不是很想拍视频\n哦哦,对了\n@_琳然_我是他的专属小黑粉哦\n就这样,白",
|
||||
"nickname": "花归(不知是个啥音)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4214297816a04e9c9bead767e288f7eb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163298
|
||||
},
|
||||
{
|
||||
"comment_id": "7351383065371149090",
|
||||
"create_time": 1711627254,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "2024年了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "106161592141",
|
||||
"sec_uid": "MS4wLjABAAAA6Mjv9f4buMOeuhB8XO4u_6psFaOVbq8NFUMESyWVCCo",
|
||||
"short_user_id": "1706919916",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "战❤️",
|
||||
"nickname": "时影的影",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-file_7e55980f6ded7baf24547af3a3364436.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163314
|
||||
},
|
||||
{
|
||||
"comment_id": "7351328642897412916",
|
||||
"create_time": 1711614587,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "妲妃",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1011202623799336",
|
||||
"sec_uid": "MS4wLjABAAAAY7gkxVgBx1p2fHZs6j1Swgga3MkuaRFxkuf_D0aL1YJiwDhINRsdUsriWK5DrBbb",
|
||||
"short_user_id": "3729416190",
|
||||
"user_unique_id": "dy7bya03atba",
|
||||
"user_signature": "网络相识更美好",
|
||||
"nickname": "广西二兄",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_232e897d41ad453f8fd7d14bcb031a38.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163339
|
||||
},
|
||||
{
|
||||
"comment_id": "7351215731315852047",
|
||||
"create_time": 1711588299,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "@🍆. @三里🌱 他的IP居然是云南",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "66134961763",
|
||||
"sec_uid": "MS4wLjABAAAAGT0r65WIYuX3MuQavdUtgisEmHN3AbwainlD7m0D2zk",
|
||||
"short_user_id": "58429888",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "落俗不可避免,浪漫至死不渝",
|
||||
"nickname": "🌈我睡不醒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2da6b0bcafe71cd4b03241a9969b06b7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644163364
|
||||
},
|
||||
{
|
||||
"comment_id": "7351198871688577830",
|
||||
"create_time": 1711584368,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2151084158105567",
|
||||
"sec_uid": "MS4wLjABAAAAJcnt3bGJ3XN6-lIwNK269ows9xLyg_61NYKE5eaaFBw3ECfOH7htmf5UFXtcsKSK",
|
||||
"short_user_id": "90840677850",
|
||||
"user_unique_id": "Cxccbb",
|
||||
"user_signature": "你好",
|
||||
"nickname": "筱段",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocmEuHAwEDfdSDAAUSmAFn4CBIuZN4AbgAbeA9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163388
|
||||
},
|
||||
{
|
||||
"comment_id": "7351077163360404258",
|
||||
"create_time": 1711556038,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,还是忍不住回来看[灵机一动]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "355873201600942",
|
||||
"sec_uid": "MS4wLjABAAAA6jakNKqr6WwMJ3w9xKkZ-hPr2cbtgtqDw5Rr5PSEEF8",
|
||||
"short_user_id": "2222825835",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "终日沉迷于赚钱养娃",
|
||||
"nickname": "禾日✨✨✨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-image-file_8d99fec4758d203a0a04dd5adc34bb73.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163414
|
||||
},
|
||||
{
|
||||
"comment_id": "7350983217442374415",
|
||||
"create_time": 1711534156,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "[舔屏][舔屏][舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "110648159355",
|
||||
"sec_uid": "MS4wLjABAAAA0VuFSvRIfLV23zjphAM1BFng-Mww6STp-SzamTVW1i8",
|
||||
"short_user_id": "51685811518",
|
||||
"user_unique_id": "51685811518",
|
||||
"user_signature": "",
|
||||
"nickname": "LOL看看",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3793_3114521287.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163439
|
||||
},
|
||||
{
|
||||
"comment_id": "7350900335247983375",
|
||||
"create_time": 1711514860,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "[666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "60330747665",
|
||||
"sec_uid": "MS4wLjABAAAAZhko7h_G68T9WRBAKSSXKe9epx3-ZmjmK9LjUXyCPjQ",
|
||||
"short_user_id": "180596547",
|
||||
"user_unique_id": "WOWO9988",
|
||||
"user_signature": "蜗蜗专卖店 10年老品牌\n店内有:蜗蜗强效定型发胶,发蜡,发泥,啫喱膏,生姜防脱育发洗发水,去屑控油香氛洗发水,发膜,护发精油,面膜,沐浴露⋯可以进店铺看看\n祝大家天天开心,工作顺利,身体健康,心想事成!",
|
||||
"nickname": "蜗蜗润中飞专卖店",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_bd0f78077452918346a238212b260974.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163463
|
||||
},
|
||||
{
|
||||
"comment_id": "7350688956063892259",
|
||||
"create_time": 1711465646,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "哈哈",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "773644183146515",
|
||||
"sec_uid": "MS4wLjABAAAA2CZQDQC-J8dnm-AJkEJwf6iUUE5KOzefUpsPSdq1_sY",
|
||||
"short_user_id": "3745507461",
|
||||
"user_unique_id": "xyacyt050217",
|
||||
"user_signature": "想看什么\n爱播@小语k @冰冷冷 \n看我就拆你@蛋仔派对换弹",
|
||||
"nickname": "二十四ovo",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o0aAfAbDHghwlAuCeICs9HASA9EA8kAAnCCDOE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163490
|
||||
},
|
||||
{
|
||||
"comment_id": "7350648455822541587",
|
||||
"create_time": 1711456215,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "我当年真的超喜欢这个!现在看也喜欢[躺平]@阿显 @三十六分物理战神 @河北吴彦祖 @葱花香菜 @৹˃ᯅ˂৹ @@三月^ @主人 @妳",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1895212166154763",
|
||||
"sec_uid": "MS4wLjABAAAAW7OZlRhbCSONiLH3gbqM9SBeDCklUOmsdJcXMObFl6JayAstOvTaez3epIxbetV2",
|
||||
"short_user_id": "3013296696",
|
||||
"user_unique_id": "zznxihuanmyx",
|
||||
"user_signature": "理想型:@你的喻言 \n理想型:@虞书欣Esther\n永远的神:@侯明昊Neo \n🏳️🌈",
|
||||
"nickname": "你说什么我听不见",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_1ae2b9de167558a177e245668af6fb96.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163514
|
||||
},
|
||||
{
|
||||
"comment_id": "7350519020116198194",
|
||||
"create_time": 1711426078,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "考古[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "92913688198",
|
||||
"sec_uid": "MS4wLjABAAAAACJ054zZVTL0jNVVHd82-TB-FB70YasBXoCmbbTaFjg",
|
||||
"short_user_id": "345223361",
|
||||
"user_unique_id": "Hyt2333999",
|
||||
"user_signature": "💁🏻♀️背景是宝贝\n分享生活\n盗图盗视频是另外的价格",
|
||||
"nickname": "大黄拖鞋",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_a2bfb29ac92956d30f70ef00e987ef32.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163540
|
||||
},
|
||||
{
|
||||
"comment_id": "7350480230837076773",
|
||||
"create_time": 1711417052,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "太有韵味了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "76759439843",
|
||||
"sec_uid": "MS4wLjABAAAAV_R5K1sR4m1zgEWn0bh8Mqeiu7IgxT2bRdPzNzQi0vw",
|
||||
"short_user_id": "132569397",
|
||||
"user_unique_id": "OBei888MM",
|
||||
"user_signature": "不要雄鹰的展翅飞翔!\n只要蜗牛的坚持不懈!",
|
||||
"nickname": "刘艳梦~欧贝童装",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_301e14e105b4471095bad4f1ddf0af47.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163565
|
||||
},
|
||||
{
|
||||
"comment_id": "7350124440607146793",
|
||||
"create_time": 1711334210,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "绝",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1207704350891571",
|
||||
"sec_uid": "MS4wLjABAAAA0MODQJwftF29AqYfz2ruapT-QWXr5OjL_vYlmlWVgr2dKW7tEffxjnQJhNoOKBhM",
|
||||
"short_user_id": "74203072493",
|
||||
"user_unique_id": "Linxison",
|
||||
"user_signature": "00年全职住家育儿嫂 每日穿搭分享\n只要我乐意也可以当个精致滴辣妈🙈\n日常生活号@天天嘞麻麻 \nV🧡: Xisonlin",
|
||||
"nickname": "林子熙(穿搭版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ab115c82621fccbd96ad7971a0abac81.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163590
|
||||
},
|
||||
{
|
||||
"comment_id": "7349981646692582183",
|
||||
"create_time": 1711300972,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了还是忍不住过来看看 👇🏻",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "245899631015708",
|
||||
"sec_uid": "MS4wLjABAAAA5KvvzQ3CofWnvJ83RyxucHZ3BNWsyplDQj0cXUukqRc",
|
||||
"short_user_id": "3829159621",
|
||||
"user_unique_id": "wuyu45373",
|
||||
"user_signature": "",
|
||||
"nickname": "豆豆^✨🌈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_259dfeed7b4e028835282250f179bb67.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163616
|
||||
},
|
||||
{
|
||||
"comment_id": "7349853791871517449",
|
||||
"create_time": 1711271194,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年回来看看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "609592841080896",
|
||||
"sec_uid": "MS4wLjABAAAA-kUdIZTrLIqNDQxYstHysti1TvejqQJUyCSy_DpuCWU",
|
||||
"short_user_id": "23515779256",
|
||||
"user_unique_id": "23515779256",
|
||||
"user_signature": "",
|
||||
"nickname": "王者连跪",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ooTJWCQQkAPeA0AUIpFDIcVee04I2f0HnAXa2A.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163641
|
||||
},
|
||||
{
|
||||
"comment_id": "7349746605744980772",
|
||||
"create_time": 1711246239,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,还是忍不住回来看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "111191073793",
|
||||
"sec_uid": "MS4wLjABAAAAyBtWZrOtk_Bu8uAhxjVz-t48ugcJBrUNxM7LDLHOve0",
|
||||
"short_user_id": "2052696979",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "新火试新茶",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ac71e6f6ab7b433eb4b7df6174b106c4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163669
|
||||
},
|
||||
{
|
||||
"comment_id": "7349615388390966031",
|
||||
"create_time": 1711215695,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "2024了我又回来看她了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "64727451680",
|
||||
"sec_uid": "MS4wLjABAAAAeuOkL877aW_erZ_LviGz-ZePRi6ZXrIAvX03Ndp55lE",
|
||||
"short_user_id": "52478342",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "只想简简单单好好生活下去!\n每天都想给自己带来不同的快乐。\n记录每一天不同的快乐分享。",
|
||||
"nickname": "慕小七",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_d765d83a7ea090235c5ebbfa626a0e3d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163693
|
||||
},
|
||||
{
|
||||
"comment_id": "7349538535210451775",
|
||||
"create_time": 1711197790,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,又回来看了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "97869295065",
|
||||
"sec_uid": "MS4wLjABAAAAyb8CP38ukW2PFtBqaa8BtiWJkjoVC_rw27eegafA7wE",
|
||||
"short_user_id": "887850643",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "且听风吟,静待花开。",
|
||||
"nickname": "北巷",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_eb055834a2d04a1fb54e661e25c7f707.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163717
|
||||
},
|
||||
{
|
||||
"comment_id": "7349475667827802932",
|
||||
"create_time": 1711183154,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "24年了,依旧感觉至上",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "914396897097048",
|
||||
"sec_uid": "MS4wLjABAAAASjVaD5vI6ri5nR8S59aGOpDzSsgHDSvxguoplvXxiUw",
|
||||
"short_user_id": "3870549360",
|
||||
"user_unique_id": "derjia24121",
|
||||
"user_signature": "",
|
||||
"nickname": "derjia",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3795_3047680722.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163747
|
||||
},
|
||||
{
|
||||
"comment_id": "7349452483728950079",
|
||||
"create_time": 1711177757,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6882368275695586568",
|
||||
"content": "啊,她好美啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "61130914552",
|
||||
"sec_uid": "MS4wLjABAAAAM1OqMAwlaAQQbza6hvbQud84EdNRyGz7556ORCbGBx0",
|
||||
"short_user_id": "1817441553",
|
||||
"user_unique_id": "A1826811",
|
||||
"user_signature": "人为善,福虽不至,祸已远离",
|
||||
"nickname": "@扶苏",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oIAAAbFIq7yINCtADDzHxEd1N54ehDfgASkAF7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163773
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_6882368275695586568.md
Normal file
882
public/data/comments/video_id_6923214072347512068.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "6923290204291809283",
|
||||
"create_time": 1611954152,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "出处:“英台不是女儿身,因何耳上有环痕? ”\n“耳环痕有原因,梁兄何必起疑云,村里酬神多庙会,年年由我扮观音,梁兄做文章要专心,你前程不想想钗裙。 ”\n“我从此不敢看观音。”",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "330285",
|
||||
"user_id": "60043717321",
|
||||
"sec_uid": "MS4wLjABAAAAI-lEgbXAy9AcrRR_ujh1DfyWRuh1ZjxLdzmjMD948KY",
|
||||
"short_user_id": "13632088",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "承蒙厚爱 万分感激🙏🏻\n视频均为自己创作 未签约 不直播\n工作v❤ orangelaby",
|
||||
"nickname": "小橙子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_310e3000a130132511b54.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3754",
|
||||
"last_modify_ts": 1711644154063
|
||||
},
|
||||
{
|
||||
"comment_id": "6923357807312355328",
|
||||
"create_time": 1611969862,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "我是mc水观音发出。。。不好意思走错了[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "190320",
|
||||
"user_id": "93378113032",
|
||||
"sec_uid": "MS4wLjABAAAA89cKvNTKf928_tZNmRAhRfo9gXk18xkiiuOsWJDPIMc",
|
||||
"short_user_id": "1129044395",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "Nim.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ba5d7db25bbddb3da573ed85898d6bd7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4085",
|
||||
"last_modify_ts": 1711644154066
|
||||
},
|
||||
{
|
||||
"comment_id": "7321646086291194634",
|
||||
"create_time": 1704703574,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "难得这里没有2024的[逞强落泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6649",
|
||||
"user_id": "109933722183",
|
||||
"sec_uid": "MS4wLjABAAAABNkIUlbouP9gWX0vz1TtZrukYsv7xc4UC4zEBvW2Znw",
|
||||
"short_user_id": "1936531410",
|
||||
"user_unique_id": "supbrositsjossie",
|
||||
"user_signature": "🇨🇳🇺🇸\nWelcome to Jossie‘s profile\nENTP\nsince’ 2007\n172 FR🔒",
|
||||
"nickname": "tayssie🪩",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f68364e130e47892577a5f8c69d01dbf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "436",
|
||||
"last_modify_ts": 1711644154069
|
||||
},
|
||||
{
|
||||
"comment_id": "6923452093747773440",
|
||||
"create_time": 1611991813,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "惊艳到了[舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "19898",
|
||||
"user_id": "102222697903",
|
||||
"sec_uid": "MS4wLjABAAAADLBk_Q27NlcomCVXjG8mHhhcGnU0c9BBEaZhELI44rE",
|
||||
"short_user_id": "1223699863",
|
||||
"user_unique_id": "muzhihebaigei",
|
||||
"user_signature": "wb:谁不是坏小孩(分享日常私信会回)\n🈴️:HPNY002(备注来意)",
|
||||
"nickname": "铁岭县刘辉商店",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_abd4065dbab7ba1fee04fc45d7f3beaf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "560",
|
||||
"last_modify_ts": 1711644154071
|
||||
},
|
||||
{
|
||||
"comment_id": "6923549036343558151",
|
||||
"create_time": 1612014381,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "这个嘎吱窝比我脸还干净",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "43924",
|
||||
"user_id": "2255822266045732",
|
||||
"sec_uid": "MS4wLjABAAAAV5vAtdwVSD9163mZYFaJKP1rfLLcskl_aF1T_B4cqiSTcxsqpqX3fsqALzs1SHZp",
|
||||
"short_user_id": "2831502526",
|
||||
"user_unique_id": "jiaming752246",
|
||||
"user_signature": "谈什么恋爱,都别谈!",
|
||||
"nickname": "家明",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e87f3abc1f8f74a79a99095aa11363d3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "835",
|
||||
"last_modify_ts": 1711644154073
|
||||
},
|
||||
{
|
||||
"comment_id": "6923368353935556608",
|
||||
"create_time": 1611972316,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "飞天里面仙女眼睛是向下看的",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5513",
|
||||
"user_id": "100497636001",
|
||||
"sec_uid": "MS4wLjABAAAA2FIelx1alN_it9NTDQuCwwoEjLiR6Nx2CrfQAmzYftk",
|
||||
"short_user_id": "1115436548",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "集锦征集啦!欢迎喜欢辅助的朋友前来投稿您的精彩操作!",
|
||||
"nickname": "玄隐(鬼谷子)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2f04a262d545f783b63e308c1e61e930.jpeg?from=2956013662",
|
||||
"sub_comment_count": "26",
|
||||
"last_modify_ts": 1711644154076
|
||||
},
|
||||
{
|
||||
"comment_id": "6923399648271237134",
|
||||
"create_time": 1611979601,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "茅台上不印你头像我都不买[白眼]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "95853",
|
||||
"user_id": "64534850226",
|
||||
"sec_uid": "MS4wLjABAAAAJ1dGUOqqmkOmF1Z9ThZo19AR73Kb4rFjup68_jbmDog",
|
||||
"short_user_id": "51100888",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "饭搭子就是陪你吃饭,听你的故事。\n何德何能,承蒙厚爱!",
|
||||
"nickname": "红雨2.0(饭搭子版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_31654000001b10b784965.jpeg?from=2956013662",
|
||||
"sub_comment_count": "859",
|
||||
"last_modify_ts": 1711644154078
|
||||
},
|
||||
{
|
||||
"comment_id": "6923432509854466061",
|
||||
"create_time": 1611987253,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "从来都没有见过这么美的观音[色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "27734",
|
||||
"user_id": "67270477067",
|
||||
"sec_uid": "MS4wLjABAAAAqzSH2QSxlt5qxYcTiSQ7Fqlho9lDUAaEZgIdgs4xl0E",
|
||||
"short_user_id": "166892452",
|
||||
"user_unique_id": "RG567663",
|
||||
"user_signature": "希望你们每天都能开开心心的",
|
||||
"nickname": "荣观佳品",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_39cc4a1cfd407f9ad03024583e683924.jpeg?from=2956013662",
|
||||
"sub_comment_count": "206",
|
||||
"last_modify_ts": 1711644154081
|
||||
},
|
||||
{
|
||||
"comment_id": "6923215189190361096",
|
||||
"create_time": 1611936657,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "这个好爱[泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "68698",
|
||||
"user_id": "64053096019",
|
||||
"sec_uid": "MS4wLjABAAAAxLux6r_y0s8aC7Jw2O1KHtqh6CeWr18p8mVO3_oyjCU",
|
||||
"short_user_id": "188463099",
|
||||
"user_unique_id": "helenoftroy",
|
||||
"user_signature": "vb:天才小火龙Helen\n🍠:天才小火龙\nins:helenoftroy_97\n商务v:helen-9797(备注来意)",
|
||||
"nickname": "天才小火龙",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_209dc0007c6d25dfa6bea.jpeg?from=2956013662",
|
||||
"sub_comment_count": "313",
|
||||
"last_modify_ts": 1711644154084
|
||||
},
|
||||
{
|
||||
"comment_id": "6923216996209999885",
|
||||
"create_time": 1611937080,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "梁山伯问英台为什么有耳洞,英台说是村里有祭祀活动就让她扮观音,然后梁山伯说:“我从此不敢看观音。”因为梁伯山对观音的扮演者祝英台起了欲愿,看到观音就会想起祝英台,所以就有了“我从此不敢看观音”[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "12207",
|
||||
"user_id": "100353288565",
|
||||
"sec_uid": "MS4wLjABAAAAtzrpG1TFDFCOVMd1wL-YCIudAD9kInO9QXIf7ozUn4o",
|
||||
"short_user_id": "1064585725",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "普通小孩热爱生活中",
|
||||
"nickname": "陈肆澄风",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ocAeP2fOfsCXfBQ4A5AfACgeHUy5gAPgeNfAD9I.jpeg?from=2956013662",
|
||||
"sub_comment_count": "268",
|
||||
"last_modify_ts": 1711644154086
|
||||
},
|
||||
{
|
||||
"comment_id": "6923214618810810383",
|
||||
"create_time": 1611936523,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "好美的敦煌飞天仙女啊[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "84167",
|
||||
"user_id": "4366895973410478",
|
||||
"sec_uid": "MS4wLjABAAAAouzZXKMbEfSsFotrUHBf-75EP0tN-ooclCSDs7NVRSnccFtgjbJiQ_vr6_ivG14G",
|
||||
"short_user_id": "2334622590",
|
||||
"user_unique_id": "guaiqiaoxune",
|
||||
"user_signature": "要微笑面对好每一天🌹",
|
||||
"nickname": "乖巧迅儿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_2d0f37d13bd34e00a9a0b6cddc63e099.jpeg?from=2956013662",
|
||||
"sub_comment_count": "428",
|
||||
"last_modify_ts": 1711644154088
|
||||
},
|
||||
{
|
||||
"comment_id": "6923442270650220557",
|
||||
"create_time": 1611989526,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "绝了太绝了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "46544",
|
||||
"user_id": "56709647970",
|
||||
"sec_uid": "MS4wLjABAAAAI9rp9kZDbJ81bp0urmkJOJ7RfzTiVD_VK6v1KFRazjc",
|
||||
"short_user_id": "4817375",
|
||||
"user_unique_id": "huaxiaoxiao1",
|
||||
"user_signature": "来日总是千千晚星\n\n商务合作v:huaxiaoxiao27本人对接(备注品牌和来意)",
|
||||
"nickname": "胡阿小小",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_882b10d08556882cf5440338fdfe9eb2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "199",
|
||||
"last_modify_ts": 1711644154091
|
||||
},
|
||||
{
|
||||
"comment_id": "6923215783170572291",
|
||||
"create_time": 1611936796,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "刚还想艾特你拍来着,结果你发啦[看][看][看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "71655",
|
||||
"user_id": "94976538255",
|
||||
"sec_uid": "MS4wLjABAAAA698Tqbt7CwSVcscXQLECzmPS8k1JyFcpEAD8hMfNEKo",
|
||||
"short_user_id": "581864858",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "ㅤ ㅤ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_33973b7d3f4b484da49e185c9af2d98b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "257",
|
||||
"last_modify_ts": 1711644154093
|
||||
},
|
||||
{
|
||||
"comment_id": "6923617378056306699",
|
||||
"create_time": 1612030320,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "我也得来一个了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6976",
|
||||
"user_id": "4419661215569230",
|
||||
"sec_uid": "MS4wLjABAAAAGEYhIUwbGeXreH2Ftj2No1AsmZi752andv90f3hGJ_NA9NJ9voDiShDoePkkC1-o",
|
||||
"short_user_id": "2250959438",
|
||||
"user_unique_id": "BBBF888",
|
||||
"user_signature": "“身份曝光就不隐藏了”\nV:bingfaBB\n合作V🪓: bingfaBB(注来意) \n小红🎒:BBBF8888 @娇爷 日常小号",
|
||||
"nickname": "孙冰法(冰娇)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_43d2f80b61367ac00dc59e6809b261f9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "123",
|
||||
"last_modify_ts": 1711644154095
|
||||
},
|
||||
{
|
||||
"comment_id": "6923339499590860815",
|
||||
"create_time": 1611965600,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "天天天",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6876",
|
||||
"user_id": "56862687678",
|
||||
"sec_uid": "MS4wLjABAAAAZacyv62n1bLynXYBJbu2GriVmf2Nl8lzWRD-QhrBcME",
|
||||
"short_user_id": "3776153",
|
||||
"user_unique_id": "Bche",
|
||||
"user_signature": "一个爱音乐的逗比少年!感谢相遇!\n注意是“逗比”男孩!也要注意“男孩”长大了\n工作📮:BeicheStudio@163.com",
|
||||
"nickname": "王北车🐲",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_31b7c0003cdfef2b9df8f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "277",
|
||||
"last_modify_ts": 1711644154098
|
||||
},
|
||||
{
|
||||
"comment_id": "6923215843715252227",
|
||||
"create_time": 1611936811,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "这不就是画里出来的仙女吗[发呆]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10900",
|
||||
"user_id": "59790703509",
|
||||
"sec_uid": "MS4wLjABAAAAKlrjtZq36woXNwTz89Utwe4FHRKFh0EMa5uJHjaUEdo",
|
||||
"short_user_id": "12326624",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "165cm/44kg 干皮/偶尔混干 \n🍎拍摄 粉调一白 唇色淡\n全平台同名 和我一起变美吧!男勿关\n🈴:FBB0908",
|
||||
"nickname": "一只豚仔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f66075a41359550446dc37bed1473c42.jpeg?from=2956013662",
|
||||
"sub_comment_count": "62",
|
||||
"last_modify_ts": 1711644154100
|
||||
},
|
||||
{
|
||||
"comment_id": "6923215161322930184",
|
||||
"create_time": 1611936648,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "今天也是沉迷于小橙子的一天[捂脸]仙女下凡",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6882",
|
||||
"user_id": "1081517097891997",
|
||||
"sec_uid": "MS4wLjABAAAASJNBecSU0trZO3LuDkGFQB5V-QeTmZRUb4rRBRcmDLyGaUtcd2d6wITLerZqGWM6",
|
||||
"short_user_id": "3449872089",
|
||||
"user_unique_id": "dy1uymhsmvgk",
|
||||
"user_signature": "喜欢的坎纸定\n👇👇👇👇",
|
||||
"nickname": "dy1uymhsmvgk",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "18",
|
||||
"last_modify_ts": 1711644154103
|
||||
},
|
||||
{
|
||||
"comment_id": "6927863589428854784",
|
||||
"create_time": 1613018945,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "我是mc水观音,发出性感的声音。[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2947",
|
||||
"user_id": "60616867402",
|
||||
"sec_uid": "MS4wLjABAAAAW455W-oPwDRi8am0dUtQfyDy0nrpdGOa25OyRgtBgCA",
|
||||
"short_user_id": "24460157",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "今晚几点睡.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_02c272c0ba91486197959e24c3135572.jpeg?from=2956013662",
|
||||
"sub_comment_count": "41",
|
||||
"last_modify_ts": 1711644154117
|
||||
},
|
||||
{
|
||||
"comment_id": "6923214996667121675",
|
||||
"create_time": 1611936612,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "飞天小仙女[可怜]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4545",
|
||||
"user_id": "2211836466314413",
|
||||
"sec_uid": "MS4wLjABAAAA2tFxnCUpsa_HpnauIn2XP0Q4h4HO_zIyKMF3-pm7zJ1KKfMZ98AEY_35c407ZD8W",
|
||||
"short_user_id": "2809408969",
|
||||
"user_unique_id": "dysk7dl5de6o",
|
||||
"user_signature": "",
|
||||
"nickname": "爱喝布丁芋奶露",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_9e04f9c7277f40bb9e2dae796804a9dd.jpeg?from=2956013662",
|
||||
"sub_comment_count": "15",
|
||||
"last_modify_ts": 1711644154385
|
||||
},
|
||||
{
|
||||
"comment_id": "6923242421258420239",
|
||||
"create_time": 1611943018,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "我天[泣不成声][泣不成声]绝了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3874",
|
||||
"user_id": "3144239213192318",
|
||||
"sec_uid": "MS4wLjABAAAAxEMn5iYSGfgcTuuJebf_CZwF11glX4Bq7a4UhtNT6PdAlUXnBHkJuqDx7ky4-_5r",
|
||||
"short_user_id": "2926195621",
|
||||
"user_unique_id": "niccalu",
|
||||
"user_signature": "🐯:125713 米团-卢觅觅\n☀️ 商务vx:ylyx0055\n🎈✌️本人:lumimi606\n💫本号作品均不得转载搬运!谢谢!\n🔥谢谢你的关注!么么哒❤️",
|
||||
"nickname": "卢觅觅",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_6f2881c4a57f6d8e15ff0b5c22c12394.jpeg?from=2956013662",
|
||||
"sub_comment_count": "68",
|
||||
"last_modify_ts": 1711644154388
|
||||
},
|
||||
{
|
||||
"comment_id": "6928226048928874511",
|
||||
"create_time": 1613103334,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "就怕突然出来个 我是mc水观音 发出性感的声音[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2234",
|
||||
"user_id": "50363495252",
|
||||
"sec_uid": "MS4wLjABAAAAjsbtotyxirhg7dTpzXJclidvYJ496EAOUKUtgBNO65I",
|
||||
"short_user_id": "1041188572",
|
||||
"user_unique_id": "dylD.157",
|
||||
"user_signature": "",
|
||||
"nickname": "dylD.157",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_c16000003f97583dac4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "22",
|
||||
"last_modify_ts": 1711644155231
|
||||
},
|
||||
{
|
||||
"comment_id": "7351328803715629864",
|
||||
"create_time": 1711614623,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1011202623799336",
|
||||
"sec_uid": "MS4wLjABAAAAY7gkxVgBx1p2fHZs6j1Swgga3MkuaRFxkuf_D0aL1YJiwDhINRsdUsriWK5DrBbb",
|
||||
"short_user_id": "3729416190",
|
||||
"user_unique_id": "dy7bya03atba",
|
||||
"user_signature": "网络相识更美好",
|
||||
"nickname": "广西二兄",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_232e897d41ad453f8fd7d14bcb031a38.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155524
|
||||
},
|
||||
{
|
||||
"comment_id": "7351198949891719973",
|
||||
"create_time": 1711584389,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "今夕是何夕",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2151084158105567",
|
||||
"sec_uid": "MS4wLjABAAAAJcnt3bGJ3XN6-lIwNK269ows9xLyg_61NYKE5eaaFBw3ECfOH7htmf5UFXtcsKSK",
|
||||
"short_user_id": "90840677850",
|
||||
"user_unique_id": "Cxccbb",
|
||||
"user_signature": "你好",
|
||||
"nickname": "筱段",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocmEuHAwEDfdSDAAUSmAFn4CBIuZN4AbgAbeA9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155529
|
||||
},
|
||||
{
|
||||
"comment_id": "7350880381309256489",
|
||||
"create_time": 1711510220,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[比心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4177737583965197",
|
||||
"sec_uid": "MS4wLjABAAAAgCUq9HSlEOwJpW1GOQzfBXH3v69-vuVN76A_Mr3VGskDyIB1wTfwT1nLYIWbFADu",
|
||||
"short_user_id": "3419990440",
|
||||
"user_unique_id": "dyzbl6h6j442",
|
||||
"user_signature": "",
|
||||
"nickname": "´•ﻌ•`",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osfnMAAOmAA8CzhACceDgznKAAA9FoAIECbHDJ.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155533
|
||||
},
|
||||
{
|
||||
"comment_id": "7350687956963427123",
|
||||
"create_time": 1711465413,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "哇",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1257462691008115",
|
||||
"sec_uid": "MS4wLjABAAAA39CuRFFFSD84M-FdJrzJcMyxHy32YwUBGpjDHJ6ZIbAJcdO2iamRYCnYCTZXwMR0",
|
||||
"short_user_id": "3607290038",
|
||||
"user_unique_id": "yuanying0219",
|
||||
"user_signature": "耳机里的世界 外面的烦恼无关紧要",
|
||||
"nickname": "憶纭",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okPDnDj7QXwD0wfIVeBnbCg2fYA8AAgAAweXgF.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155537
|
||||
},
|
||||
{
|
||||
"comment_id": "7350616885912601379",
|
||||
"create_time": 1711448866,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "咋滴又让你找着这视频的?[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "111493375055",
|
||||
"sec_uid": "MS4wLjABAAAAcaNNPuJOv15i0CxBmMMuvtqgITv6YAqAuyOY9mAQTEM",
|
||||
"short_user_id": "2112540995",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "好像",
|
||||
"nickname": "妍",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_5991e4f1b2e94c8f811b1fe383be026e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155545
|
||||
},
|
||||
{
|
||||
"comment_id": "7350616754618123008",
|
||||
"create_time": 1711448835,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "别吵,我在等24年那批人[微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "111493375055",
|
||||
"sec_uid": "MS4wLjABAAAAcaNNPuJOv15i0CxBmMMuvtqgITv6YAqAuyOY9mAQTEM",
|
||||
"short_user_id": "2112540995",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "好像",
|
||||
"nickname": "妍",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_5991e4f1b2e94c8f811b1fe383be026e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644155554
|
||||
},
|
||||
{
|
||||
"comment_id": "7350271568323494656",
|
||||
"create_time": 1711368466,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "@睡不卓· 雅俗共赏[小鼓掌]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "60150500326",
|
||||
"sec_uid": "MS4wLjABAAAAjYJDwDlyxTZ7s_PT5OJB44VRLtPnjgvc24Cj19R5B7w",
|
||||
"short_user_id": "14092795",
|
||||
"user_unique_id": "fan123456788283",
|
||||
"user_signature": "",
|
||||
"nickname": "🔱🔱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_241a4000494bafb58e27a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155563
|
||||
},
|
||||
{
|
||||
"comment_id": "7350251168432866048",
|
||||
"create_time": 1711363717,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "是观音小时候吧",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2862769286163244",
|
||||
"sec_uid": "MS4wLjABAAAA6p_owJWb5eSJ11pPE4Bvp6c0G3bYGZF0HLJpV37h1oWDqXiWAofP8kUwWfd6mQtj",
|
||||
"short_user_id": "3506361519",
|
||||
"user_unique_id": "skr73710",
|
||||
"user_signature": "",
|
||||
"nickname": "登顶东岳看日出",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o0BKCIkQnuGXoCCPgDbeASAA3eiqAlAADRS9IV.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155572
|
||||
},
|
||||
{
|
||||
"comment_id": "7350195562514219787",
|
||||
"create_time": 1711350769,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[调皮]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "75647582776",
|
||||
"sec_uid": "MS4wLjABAAAABIyi-oY2NDnrAWccJ2MWjJDFzx_FanlWbkOFIiAjuJI",
|
||||
"short_user_id": "132316707",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "🌏🌏🌏",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oAfBMAeMbInHfZAA8SAAbLDAKyQ87m3BaAziLE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155580
|
||||
},
|
||||
{
|
||||
"comment_id": "7350124309576467254",
|
||||
"create_time": 1711334178,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "绝啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1207704350891571",
|
||||
"sec_uid": "MS4wLjABAAAA0MODQJwftF29AqYfz2ruapT-QWXr5OjL_vYlmlWVgr2dKW7tEffxjnQJhNoOKBhM",
|
||||
"short_user_id": "74203072493",
|
||||
"user_unique_id": "Linxison",
|
||||
"user_signature": "00年全职住家育儿嫂 每日穿搭分享\n只要我乐意也可以当个精致滴辣妈🙈\n日常生活号@天天嘞麻麻 \nV🧡: Xisonlin",
|
||||
"nickname": "林子熙(穿搭版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ab115c82621fccbd96ad7971a0abac81.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155588
|
||||
},
|
||||
{
|
||||
"comment_id": "7349962263740760882",
|
||||
"create_time": 1711296452,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "588955061070600",
|
||||
"sec_uid": "MS4wLjABAAAAit5CtxfW0ZOf-VmsDSNGTr3eWfl2FM2h89nh9Iq62rE",
|
||||
"short_user_id": "3589681735",
|
||||
"user_unique_id": "chenlongwate",
|
||||
"user_signature": "火影迷",
|
||||
"nickname": "陈龙瓦特",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_a6161cb177a448a1bb290cb450586d75.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155596
|
||||
},
|
||||
{
|
||||
"comment_id": "7349571441295164175",
|
||||
"create_time": 1711205452,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "这个衣服好看 哪里买",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "351498676744493",
|
||||
"sec_uid": "MS4wLjABAAAABu9er2JdgwbzGp6Rtu2lhquzYsyaPNiAm_7TIEOT4F4",
|
||||
"short_user_id": "4193669597",
|
||||
"user_unique_id": "liangyan.333",
|
||||
"user_signature": "德在人先,利居其后",
|
||||
"nickname": "华中花溪北岸 梁言",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ee8fd83094287cf8a4703b0dfc2147be.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155604
|
||||
},
|
||||
{
|
||||
"comment_id": "7349497383819936549",
|
||||
"create_time": 1711188209,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[调皮][调皮]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "111638034177",
|
||||
"sec_uid": "MS4wLjABAAAAGY3V6xvBko6vrP5YQ89inJeNzgPak-GIJs83VAJKmCA",
|
||||
"short_user_id": "2139939766",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "阙***",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oclANV4lXCkEBAf9MA1I3a8AAfArgEtDd7Pzh4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155612
|
||||
},
|
||||
{
|
||||
"comment_id": "7349328545909310262",
|
||||
"create_time": 1711148902,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "丘比特呢[呲牙]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "98098108418",
|
||||
"sec_uid": "MS4wLjABAAAA47t3zuCFBUTVhC0kzF465G5PfWtrJPBo8cwo32ACKm8",
|
||||
"short_user_id": "970847626",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "(❁´◡`❁)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogOUg5nAAQlAeHhOpNbC9YPpxTOeJxAkADAiLI.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155621
|
||||
},
|
||||
{
|
||||
"comment_id": "7349108044125553408",
|
||||
"create_time": 1711097562,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "@piglet @🐟粮会更好 @蜜雪冰城(小鹿突击队西南第二大队副队长) 这个是细糠[九转大肠][九转大肠]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2854761621618701",
|
||||
"sec_uid": "MS4wLjABAAAAgp0RuJPgs8WVzx89IXnxid-bDMyfoGEAMxcGVH58ekzoTLYAp-0zpYtBkdaQPgC6",
|
||||
"short_user_id": "55860267640",
|
||||
"user_unique_id": "DL023425",
|
||||
"user_signature": "点语音陪陪 王者陪 有意向🉑➕v@芋泥CoCo \n小号更日常(随便更新 主打随性)@芋泥香泥~ \n (无其他平台 别被骗了!)\n就只有这一个大号和上面的两个小号奥 乖宝~",
|
||||
"nickname": "芋泥波波波~",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogeCPfA8AovtCCU39yqZA9CnVAEAIAroz8hmhg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155628
|
||||
},
|
||||
{
|
||||
"comment_id": "7349006495982453556",
|
||||
"create_time": 1711073920,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[赞][赞][赞][鼓掌][鼓掌]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "110411105107",
|
||||
"sec_uid": "MS4wLjABAAAAIY-YIaoKh3W9x1iO45qW0h4b9vZRHwwbEinSP6RJ-9U",
|
||||
"short_user_id": "1958337706",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "幸福久久",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_854a19013d23442e8bbcc0c875274bad.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155638
|
||||
},
|
||||
{
|
||||
"comment_id": "7348439170954429210",
|
||||
"create_time": 1710941825,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "都2024了不可能有人比我还晚吧[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "67697736523",
|
||||
"sec_uid": "MS4wLjABAAAA0X27nOUJtwUlAVxStQma5GewAQiNUEXSvAXEA6RK2DE",
|
||||
"short_user_id": "112230783",
|
||||
"user_unique_id": "Smn0560",
|
||||
"user_signature": "他很懒,懒得写!",
|
||||
"nickname": "空心.cn",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okEh7AndfHLbvAF65QctGAwDAGK8IBLfBQAAfI.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155646
|
||||
},
|
||||
{
|
||||
"comment_id": "7348389018730971915",
|
||||
"create_time": 1710930151,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "[鼓掌][鼓掌][鼓掌]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3214593366950184",
|
||||
"sec_uid": "MS4wLjABAAAAfQzN28_ULs1NM1DE-mjyo57leYxEpyfiAF2VAtQfNX_JmkpwvKpN3SC-H-dLR04j",
|
||||
"short_user_id": "3029642089",
|
||||
"user_unique_id": "dym4w2w67np7",
|
||||
"user_signature": "带您一起开心!😄",
|
||||
"nickname": "自由翱翔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c2e1008256294abd985571e1a577856f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155656
|
||||
},
|
||||
{
|
||||
"comment_id": "7348258352381625098",
|
||||
"create_time": 1710899726,
|
||||
"ip_location": "",
|
||||
"aweme_id": "6923214072347512068",
|
||||
"content": "你这观音咋是个斜眼子",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2541661136098471",
|
||||
"sec_uid": "MS4wLjABAAAAF98beW6SgiAj6ZFIfNj6DO5quRS_ifr8tDObRPp-qjv6T5HRR_mc9PUJU3DkTXC_",
|
||||
"short_user_id": "3266685441",
|
||||
"user_unique_id": "ling88888800000",
|
||||
"user_signature": "",
|
||||
"nickname": "隐喻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_e5c89ddd453d4cd9b7b5273bb9e6a671.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155664
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_6923214072347512068.md
Normal file
882
public/data/comments/video_id_7000587983069957383.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7000589051154416423",
|
||||
"create_time": 1629951658,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "救命 徒手抓蛇[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "132521",
|
||||
"user_id": "676953779350301",
|
||||
"sec_uid": "MS4wLjABAAAAEqBy1MUhlq1JJj7pj1exa3GDKKvawNpEpdFsoNwI7TI",
|
||||
"short_user_id": "3739192751",
|
||||
"user_unique_id": "dyyh2axsoe12",
|
||||
"user_signature": "",
|
||||
"nickname": "繁星明朱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_edfbb592a8541c47d109a38d83a82678.jpeg?from=2956013662",
|
||||
"sub_comment_count": "2662",
|
||||
"last_modify_ts": 1711644162117
|
||||
},
|
||||
{
|
||||
"comment_id": "7000589209183159040",
|
||||
"create_time": 1629951693,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "这是什么胆大的人间奇女子[泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "65126",
|
||||
"user_id": "3504878505705052",
|
||||
"sec_uid": "MS4wLjABAAAAkf3YxabaaWaMwi0Vv1wDi2l6uG-yjI8Iy2Sg3N6bkVgMouGfZ_CwaFG_0pJpnHBX",
|
||||
"short_user_id": "2241644449",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🥰谢谢你的关注🥰\n商v:Ji180826(备注来意)",
|
||||
"nickname": "我的将军啊✨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_311e300091338b7014c54.jpeg?from=2956013662",
|
||||
"sub_comment_count": "593",
|
||||
"last_modify_ts": 1711644162130
|
||||
},
|
||||
{
|
||||
"comment_id": "7000588813404357407",
|
||||
"create_time": 1629951602,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "徒手抓蛇[泪奔][泪奔][泪奔][泪奔]太厉害了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "80014",
|
||||
"user_id": "79979078094",
|
||||
"sec_uid": "MS4wLjABAAAAhGy0HIl3GZ5Hy21IlmL3CiBCjnhfUBiRxKadegy6w80",
|
||||
"short_user_id": "595860248",
|
||||
"user_unique_id": "CONGMINGDE33",
|
||||
"user_signature": "",
|
||||
"nickname": "玉子酱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3229ba423f2bd6c69dfd5de29a3fc653.jpeg?from=2956013662",
|
||||
"sub_comment_count": "506",
|
||||
"last_modify_ts": 1711644162139
|
||||
},
|
||||
{
|
||||
"comment_id": "7000640791433642767",
|
||||
"create_time": 1629963703,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "三年了,终于刷到你了[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5546",
|
||||
"user_id": "98472106751",
|
||||
"sec_uid": "MS4wLjABAAAANLQym1xepfHGIIjtK1BL4nPhv7Zfq3b1GnAKwtXnVAk",
|
||||
"short_user_id": "939005863",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "热爱一切海洋生物,与水生物打交道30多年\n不认识的海洋生物可以找我辨认\n希望大家保护海洋,关注我们身边的大自然\n斯莱斯特莱德大学硕士毕业\n商务:13122770921",
|
||||
"nickname": "海王弗兰克",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_196e135267060eca632d3cecccd69998.jpeg?from=2956013662",
|
||||
"sub_comment_count": "106",
|
||||
"last_modify_ts": 1711644162149
|
||||
},
|
||||
{
|
||||
"comment_id": "7007799168371114787",
|
||||
"create_time": 1631630393,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "看了李亚鹏的视频,在看李子柒的,还是李子柒看着舒服。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5240",
|
||||
"user_id": "85130642232",
|
||||
"sec_uid": "MS4wLjABAAAARBGUG2B8FHqX_GkeZBtLmOrOZwNk6y_bUrIt5Rv64U0",
|
||||
"short_user_id": "291155748",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "今日无事,勾栏听曲",
|
||||
"nickname": "🌈时光",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_283500002de5e5c5b1675.jpeg?from=2956013662",
|
||||
"sub_comment_count": "158",
|
||||
"last_modify_ts": 1711644162160
|
||||
},
|
||||
{
|
||||
"comment_id": "7170989270718120716",
|
||||
"create_time": 1669626055,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "感觉和沈丹的不一样,李子柒总有一种田园美,娴静和优雅,骨子里面的那种,沈丹感觉比较辛苦",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "7128",
|
||||
"user_id": "92338895482",
|
||||
"sec_uid": "MS4wLjABAAAA2P2GAigTgcOjbDV3G1buXacaPoObbVC4UQ1xqpCpcxY",
|
||||
"short_user_id": "358115705",
|
||||
"user_unique_id": "ZXcermony",
|
||||
"user_signature": "觉醒年代",
|
||||
"nickname": "诗逸小姐",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_9826c97ed9a042e88082b67214000b18.jpeg?from=2956013662",
|
||||
"sub_comment_count": "213",
|
||||
"last_modify_ts": 1711644162171
|
||||
},
|
||||
{
|
||||
"comment_id": "7000589843893961509",
|
||||
"create_time": 1629951842,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "不知道为啥我自己就是属蛇的,都很怕蛇[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1735",
|
||||
"user_id": "96624667869",
|
||||
"sec_uid": "MS4wLjABAAAAD0jsd3vn_6dd2oQ3Fcywq3N43fJsiO8OZU_54v7pazE",
|
||||
"short_user_id": "718844334",
|
||||
"user_unique_id": "aaa323232",
|
||||
"user_signature": "我好好喜欢你的时候你不应该对我忽冷忽热-",
|
||||
"nickname": "-智商已欠费_",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b7f0032e522f7f92688d66a9601051b2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "102",
|
||||
"last_modify_ts": 1711644162180
|
||||
},
|
||||
{
|
||||
"comment_id": "7336113054886036274",
|
||||
"create_time": 1708071931,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024年2月16日,单位值班,饭后观看此视频。倍感温馨,特留存。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "26",
|
||||
"user_id": "104590273365",
|
||||
"sec_uid": "MS4wLjABAAAA3qYdm7kTh_Ouedggm7nUBDmMDcpaJIfjSgl_bQVygQI",
|
||||
"short_user_id": "1500448439",
|
||||
"user_unique_id": "Ck6660999",
|
||||
"user_signature": "",
|
||||
"nickname": "三止郎",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-image-file_56020117205948fc3c3bbaebaa24a378.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162191
|
||||
},
|
||||
{
|
||||
"comment_id": "7338448366096876326",
|
||||
"create_time": 1708615659,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024年2、22日我也来看了。视频确实好看[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "34",
|
||||
"user_id": "2783612537678936",
|
||||
"sec_uid": "MS4wLjABAAAAbx2SM4tYIZorIeghkHXR_kxOjPo_AYlCU1K-3y8wZsygVrgYGhIiriVZ90dEfRQO",
|
||||
"short_user_id": "2285491744",
|
||||
"user_unique_id": "nn820309561",
|
||||
"user_signature": "",
|
||||
"nickname": "哈哈🖐️🇨🇳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2847500050843524bd810.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162202
|
||||
},
|
||||
{
|
||||
"comment_id": "7121669115513537288",
|
||||
"create_time": 1658142812,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "模仿不难,可是开创一个领域很难,坚持初心更难。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "102",
|
||||
"user_id": "103169859312",
|
||||
"sec_uid": "MS4wLjABAAAAhwwIbXCcRAnlGwprQB7vHkD0oQPilvWNIxgOH-9FIXk",
|
||||
"short_user_id": "1399989774",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "喜欢仿古瓷,专注现代艺术,希望成为媒介,让更多人了解古瓷的魅力",
|
||||
"nickname": "日日晟瓷器",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_b6e9000bc051998d4e69.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162211
|
||||
},
|
||||
{
|
||||
"comment_id": "7329314498166506290",
|
||||
"create_time": 1706489020,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "这个号还有可能重启吗,不管怎样,希望以前的视频不要删,太美好了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "44",
|
||||
"user_id": "95635439107",
|
||||
"sec_uid": "MS4wLjABAAAACwDUVuAkT2K_lsUfOzxcj8mwijLS1bXxmvnV2bvyWsQ",
|
||||
"short_user_id": "606559961",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "我是猫耳朵呀丶ᵈᵘ❀",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_69bd3ae464ec90f218532daf6b75e670.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162223
|
||||
},
|
||||
{
|
||||
"comment_id": "7000635598457881344",
|
||||
"create_time": 1629962495,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "子柒真是神仙女子,徒手抓蛇[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "365",
|
||||
"user_id": "98973201372",
|
||||
"sec_uid": "MS4wLjABAAAAPzWr9kg0IUJTUU3O4DOXc2dEaZte-9dk0T0NNphdbQo",
|
||||
"short_user_id": "2796711385",
|
||||
"user_unique_id": "Txash",
|
||||
"user_signature": "美食博主 分享都是来自于试吃试用\n严格把控全网最火爆!超好吃的零食\nXxdechuan121合作备注品牌",
|
||||
"nickname": "夏夏爱美食",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ebf64952b61240c1415717d615919c36.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162234
|
||||
},
|
||||
{
|
||||
"comment_id": "7329528511763940147",
|
||||
"create_time": 1706538844,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "一看就是经常干农活的真实不做作的女子[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "37",
|
||||
"user_id": "361057658613528",
|
||||
"sec_uid": "MS4wLjABAAAASBxRaiahHDEotkTJpdgxnMnEdfURG_L0flBiM-1mFQ0",
|
||||
"short_user_id": "61804302764",
|
||||
"user_unique_id": "61804302764",
|
||||
"user_signature": "专属可爱",
|
||||
"nickname": "熊小西🐻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_a8061354837cb89fe1a74c7f680fbe53.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162246
|
||||
},
|
||||
{
|
||||
"comment_id": "7339149416596816678",
|
||||
"create_time": 1708778884,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024正月十五元宵节,下班在出租屋做好饭,边吃边看[大笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21",
|
||||
"user_id": "95747056502",
|
||||
"sec_uid": "MS4wLjABAAAAu-9Oa3qyFfB3Qggqb0-aGsLyy-BMB0I6G3JxejrdYBg",
|
||||
"short_user_id": "2147837066",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "😷!",
|
||||
"nickname": "久Li",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ace53cdf4e124c279bad21050a1068ec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162257
|
||||
},
|
||||
{
|
||||
"comment_id": "7350335973236081445",
|
||||
"create_time": 1711383464,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024年4月26号 在等更新[裂开]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4",
|
||||
"user_id": "104797711137",
|
||||
"sec_uid": "MS4wLjABAAAAXZlyFMT77JWtZ_Xl5AKuu6t0bLuB35ekmtj1R2wpKC4",
|
||||
"short_user_id": "1541224798",
|
||||
"user_unique_id": "45835363300",
|
||||
"user_signature": "",
|
||||
"nickname": "NVER2021121119",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644162268
|
||||
},
|
||||
{
|
||||
"comment_id": "7338305631286395674",
|
||||
"create_time": 1708582429,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "这难道就是史铁生最爱吃的豌豆黄[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45",
|
||||
"user_id": "2843797634686361",
|
||||
"sec_uid": "MS4wLjABAAAAlkZq6o-yn5F0J6XNo-PDpW9xx1NDs1PUTMrn4UobQLYJMilbLxZtntbLhl0Ejs5y",
|
||||
"short_user_id": "67639684643",
|
||||
"user_unique_id": "53011307184shi",
|
||||
"user_signature": "追风赶月莫停留\n平芜尽处是春山",
|
||||
"nickname": "耹聆",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o0dAS2AC9frRACCAzyKdemgA8hE2tApzIzvjvV.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162278
|
||||
},
|
||||
{
|
||||
"comment_id": "7338380137455944459",
|
||||
"create_time": 1708599775,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "原来我已经这么久没看了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "59",
|
||||
"user_id": "99126503568",
|
||||
"sec_uid": "MS4wLjABAAAAdYQRaMapgvRdB7uFzyfUAlbsPzNe-L2DzEqRJL6B0VM",
|
||||
"short_user_id": "979801178",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "喜欢打游戏的高中生",
|
||||
"nickname": "伊藤晨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e82eb43f6562d4db7b86df5d955a8bfe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162289
|
||||
},
|
||||
{
|
||||
"comment_id": "7338229990239519523",
|
||||
"create_time": 1708564818,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024.2.22 期待更新",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "31",
|
||||
"user_id": "85320173043",
|
||||
"sec_uid": "MS4wLjABAAAATUSJovfVsImjILIrQZUEhIVWXnPlE-pl9eRq45sCKJc",
|
||||
"short_user_id": "195169623",
|
||||
"user_unique_id": "QXiBao20230301",
|
||||
"user_signature": "喜宝🐶(返灰失败泰迪妹妹)\n2023年03月01日\n\n🤳记录小家伙的日常",
|
||||
"nickname": "柒/囍宝(灰泰迪)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2840a623ffe992ff562bfe69ee2c5431.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162302
|
||||
},
|
||||
{
|
||||
"comment_id": "7182745969770496824",
|
||||
"create_time": 1672363379,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "看她干活,人间治愈。又美又能干",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "60",
|
||||
"user_id": "92301528435",
|
||||
"sec_uid": "MS4wLjABAAAALKCWcpoePcxjtD9THPmu5hNkU2LB02aEtfg-UU-x9LE",
|
||||
"short_user_id": "331620006",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "su",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2eb1900025983804585ff.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162312
|
||||
},
|
||||
{
|
||||
"comment_id": "7124122342469157632",
|
||||
"create_time": 1658714002,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "姐姐 你上了我们初三那时候的英语周报了[调皮] 好崇拜你阿",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "65",
|
||||
"user_id": "88382174933359",
|
||||
"sec_uid": "MS4wLjABAAAAWBL0Fvl2dNbdD8DZjwPNJCKL0zVzTkk76H5gvCUzCfQ",
|
||||
"short_user_id": "4123923596",
|
||||
"user_unique_id": "dyj5a5mjm8vj",
|
||||
"user_signature": "",
|
||||
"nickname": "Continue winner",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_17394a14c7aa4ab4983648b5df088b8d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162323
|
||||
},
|
||||
{
|
||||
"comment_id": "7351452452669686539",
|
||||
"create_time": 1711643417,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024、3、28依然等你,睡前看看你的视频才睡得着",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "92403139276",
|
||||
"sec_uid": "MS4wLjABAAAAX0GNL6gtJYVsiPmlr4HXLoejuA66chrDTSPCXzrSM-Y",
|
||||
"short_user_id": "333729675",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "湫、",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o8NjHxQDtCAfp60EAI2AIAAAwTfg6ldEzA93hC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644162900
|
||||
},
|
||||
{
|
||||
"comment_id": "7351393958209258281",
|
||||
"create_time": 1711629790,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "怎么没更新了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2885538200685156",
|
||||
"sec_uid": "MS4wLjABAAAAw_w5cwOVOKb_8-FWo9kb1bfWarCFZR0raCbEMWDNGOzC_sQimrfF2e2HYm14hxdH",
|
||||
"short_user_id": "4118277136",
|
||||
"user_unique_id": "dy1aoshd4x750",
|
||||
"user_signature": "简单的生活",
|
||||
"nickname": "农村帅帅哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_305a25fb44e545328edb9a198cc6e11f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163003
|
||||
},
|
||||
{
|
||||
"comment_id": "7351347437036602123",
|
||||
"create_time": 1711618960,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024年3月28日来看[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3284950607468455",
|
||||
"sec_uid": "MS4wLjABAAAAN1VAylRHYce_3_jqmONqtT3GGEJnEJtHobDAxZn11N3VJklzLZg55MBNP_pv9nzq",
|
||||
"short_user_id": "2840669672",
|
||||
"user_unique_id": "mujia97706",
|
||||
"user_signature": "",
|
||||
"nickname": "沐佳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oABwAldYDlTGAefGUACIAgAwWEA2CKnEAQAb9G.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163016
|
||||
},
|
||||
{
|
||||
"comment_id": "7351263178443997990",
|
||||
"create_time": 1711599343,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "[玫瑰][玫瑰][玫瑰][玫瑰][玫瑰][玫瑰][玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "110488072911",
|
||||
"sec_uid": "MS4wLjABAAAA7UoCmygZNsUvcWdQz2Pb6t0kA-MrRj3BeyCPeVRN3lI",
|
||||
"short_user_id": "2271175507",
|
||||
"user_unique_id": "R168198198",
|
||||
"user_signature": "永远的神:",
|
||||
"nickname": "投缘没回就是上限附近100米",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMAAfwDIEBALcaebyQ8E4cDMfhIBrBApnEE7A9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163028
|
||||
},
|
||||
{
|
||||
"comment_id": "7351236105914827559",
|
||||
"create_time": 1711593040,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "看你的作品,简直就是享受[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "70370214742",
|
||||
"sec_uid": "MS4wLjABAAAAMKevSk0j3kYk1A94sSqqCML6NIy6oE5KoJXi1E4Y7LU",
|
||||
"short_user_id": "81277554",
|
||||
"user_unique_id": "dianfenchang99",
|
||||
"user_signature": "只是娱乐,不喜勿喷。",
|
||||
"nickname": "💋心肝宝贝💋",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_f85d000352884167775d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163040
|
||||
},
|
||||
{
|
||||
"comment_id": "7351190840763630387",
|
||||
"create_time": 1711582501,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "她的农村生活很真实,小时候这些活我都干过",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "88509124435",
|
||||
"sec_uid": "MS4wLjABAAAAeUDYLHCvv5UjrNdR6bjcBRiYFMNmqrXiype4-et84qs",
|
||||
"short_user_id": "291731328",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "栖霞明军铝接头厂",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4384b6caadae4c2497731be616e1bc82.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163052
|
||||
},
|
||||
{
|
||||
"comment_id": "7351070697945039631",
|
||||
"create_time": 1711554529,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024.3.27",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4129389666631843",
|
||||
"sec_uid": "MS4wLjABAAAAe1ezDARc7xCqWOVeQst-sc7_UWN1j2BHSSeqte2gVCIqWdQ41VOwhoeHkDOPouHm",
|
||||
"short_user_id": "2950224400",
|
||||
"user_unique_id": "lanyan23238",
|
||||
"user_signature": "懒",
|
||||
"nickname": "一个懒猪",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogdVY3giNAEDdEAlAzeygjC7ghANfAAMwsAImH.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163063
|
||||
},
|
||||
{
|
||||
"comment_id": "7351043943980974886",
|
||||
"create_time": 1711548296,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "拍摄的人是谁呀,拍得好美",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "70414258325",
|
||||
"sec_uid": "MS4wLjABAAAAr4fNUJJX-e1DapLpHsZ7Sc7_amBKgJxb_S5skzgtf5I",
|
||||
"short_user_id": "2093618571",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "冰雪聪明",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_20ad8000134e925df4995.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163077
|
||||
},
|
||||
{
|
||||
"comment_id": "7351023066396246793",
|
||||
"create_time": 1711543434,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024年3月27日,我在广西等着。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "93209068224",
|
||||
"sec_uid": "MS4wLjABAAAAUF3J5TV2IR06PRsWL5T4Bxl6aB6Ew-72H0QAa0v3zsM",
|
||||
"short_user_id": "366009386",
|
||||
"user_unique_id": "CCYX2009",
|
||||
"user_signature": "",
|
||||
"nickname": "⭐🔥吴老",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oUCeENhzA9tAAHtA7lO0AoMI0AfOR9AtrlCLHg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163088
|
||||
},
|
||||
{
|
||||
"comment_id": "7351013591754507020",
|
||||
"create_time": 1711541230,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "[感谢][感谢][感谢]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "111426168674",
|
||||
"sec_uid": "MS4wLjABAAAAvfJydthWFcyGkZBa8EBS0NNYR3cl6ndgfNA1myKfF1g",
|
||||
"short_user_id": "2795636794",
|
||||
"user_unique_id": "zhuzhu85376",
|
||||
"user_signature": "",
|
||||
"nickname": "珠珠",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2d09e0005a2ee382f8ba9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163099
|
||||
},
|
||||
{
|
||||
"comment_id": "7350922886120686336",
|
||||
"create_time": 1711520111,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "哇,子柒好瘦呀!我看到锁骨了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2949368757369051",
|
||||
"sec_uid": "MS4wLjABAAAAPNM95SwIzKUDKRjRFPauSUBSyKn1w2rvfu5X9tjcEKoaTgo-7QbEvcHRyoaMYqhZ",
|
||||
"short_user_id": "66103309264",
|
||||
"user_unique_id": "66103309264",
|
||||
"user_signature": "🌻苦将岁月开成花\n人生何处不芳华🌱",
|
||||
"nickname": "清清🍀",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ogwmQbwbAAAHA9sEgIeYAfDnEbz4kAnDAACAEQ.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163111
|
||||
},
|
||||
{
|
||||
"comment_id": "7350745061279597364",
|
||||
"create_time": 1711478727,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "菜花蛇🐍没有毒。。。小时候经常抓[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "69128762443",
|
||||
"sec_uid": "MS4wLjABAAAALrmV7xdO6YUIEP5PIXwljpuRCQ5rRWUQ0L_i6ckaDck",
|
||||
"short_user_id": "74576182",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "我就是我,不一样的烟火。。。",
|
||||
"nickname": "杨。。。",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ceeb753013f54850b742337d7b3b6944.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163123
|
||||
},
|
||||
{
|
||||
"comment_id": "7350625425796252416",
|
||||
"create_time": 1711450853,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "某种意义上,她的摄影师和剪辑师也非常牛[笑哭]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "59643490355",
|
||||
"sec_uid": "MS4wLjABAAAAo4YogNfFEUftCllD5na6nEw9kpcbioC0VVQolHco5Tw",
|
||||
"short_user_id": "614054321",
|
||||
"user_unique_id": "iw227815",
|
||||
"user_signature": "✅纯运动✅包吃住\n————————————\n入营请私信(24h在线)\n❤️iw027815",
|
||||
"nickname": "逐鹿健身训练营",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_24900dccfc7c519ff7b9427f74aa614b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163134
|
||||
},
|
||||
{
|
||||
"comment_id": "7350514348426003212",
|
||||
"create_time": 1711424994,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "666",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "108079531678",
|
||||
"sec_uid": "MS4wLjABAAAAfJRh_9nwaHG0B-uf72qOKyTlWbCX2-YMAbHz_LVZYkg",
|
||||
"short_user_id": "2199740584",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "孤帆远影碧空尽,惟见长江天际流!",
|
||||
"nickname": "拒绝范冰冰N次",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-file_487ed765dea9e7028b9531984b8d9860.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163146
|
||||
},
|
||||
{
|
||||
"comment_id": "7350483650070758181",
|
||||
"create_time": 1711417845,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "要学习很久的摄影,色度,角度,剪辑才能拍出这种感觉",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3249753505929774",
|
||||
"sec_uid": "MS4wLjABAAAAHryt8DS5bGNlqRt-uFYUSWgObfeDSr7O7azo4h-moTIz9Jf_ivFDvbBdlejHSkaZ",
|
||||
"short_user_id": "2336296022",
|
||||
"user_unique_id": "Chen1987119",
|
||||
"user_signature": "————分享快乐、悲伤、喜悦感受人间冷暖,期待未来值得奔赴。\n————同样的剧情,不同的人,结局也会不一样\n————你希望故事是真的还是假的?我只希望结局是美好的。",
|
||||
"nickname": "四川幺妹儿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_20ad07760e6b425ccf3703ef1aad43b2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163156
|
||||
},
|
||||
{
|
||||
"comment_id": "7350457028148118322",
|
||||
"create_time": 1711411649,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "小柒快出来吧,大家想你了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2661247335800024",
|
||||
"sec_uid": "MS4wLjABAAAAgkxzLUeAEcFOqfVfj5WyKSy17-Ao0XWcb3loW7Vjf1Xg0MNswm3k1fu82z-PwJfw",
|
||||
"short_user_id": "78288997450",
|
||||
"user_unique_id": "78288997450",
|
||||
"user_signature": "加油做更好的自己",
|
||||
"nickname": "刘卫",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_e39955929d8f4d15a9b35035b802b3b3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163170
|
||||
},
|
||||
{
|
||||
"comment_id": "7350450002214601526",
|
||||
"create_time": 1711410013,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2173063554140782",
|
||||
"sec_uid": "MS4wLjABAAAABucZ24s92bFyEkdQb_hNWUiKkkY7btObikeGoeDPHzuBMVRtQhlxWzsY27sMJE4C",
|
||||
"short_user_id": "39741666542",
|
||||
"user_unique_id": "39741666542",
|
||||
"user_signature": "",
|
||||
"nickname": "河南宛美艾草产业园有限公司",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oobAAr7CGgA3ZAa4FjemebAtIgDamCnKlQ99A8.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163181
|
||||
},
|
||||
{
|
||||
"comment_id": "7350356533031764736",
|
||||
"create_time": 1711388269,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "[捂脸][捂脸][捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "109524467120",
|
||||
"sec_uid": "MS4wLjABAAAAgDpXLqcp6zcpegENHYiwVu3_a30Ihah67YKkV66NDJU",
|
||||
"short_user_id": "2256297586",
|
||||
"user_unique_id": "tkm287805067",
|
||||
"user_signature": "哟西",
|
||||
"nickname": "(666)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oEbKef9EiEBeK8QIAQ8AXAA1oWrAvKLsnB7LDC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163193
|
||||
},
|
||||
{
|
||||
"comment_id": "7350345853037576986",
|
||||
"create_time": 1711385770,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "2024了还会有人回来看吗[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4234934147090999",
|
||||
"sec_uid": "MS4wLjABAAAAWzW-Ut_WlG0HFtYfvvmu45Ilbaeeu8Ne69ap_6IfHPIvDI67dI-WiianqRTYb8YN",
|
||||
"short_user_id": "2802807694",
|
||||
"user_unique_id": "WS10061120",
|
||||
"user_signature": "Be a big tree",
|
||||
"nickname": "Ooooge",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_e437cca9e1d14a12a4965a62086c906a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163206
|
||||
},
|
||||
{
|
||||
"comment_id": "7350298021643944739",
|
||||
"create_time": 1711374624,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7000587983069957383",
|
||||
"content": "李子柒上哪去了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3584035849514099",
|
||||
"sec_uid": "MS4wLjABAAAAsafthBO7htb5jlMyL9FpqFCL-49xewZagjSm02Y4hiWQk-nzlRTh_gecIAef8lZs",
|
||||
"short_user_id": "33843540506",
|
||||
"user_unique_id": "33843540506",
|
||||
"user_signature": "",
|
||||
"nickname": "缘尽今生",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_2eae2e023e144e949ca1549cd297e3fe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163218
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7000587983069957383.md
Normal file
882
public/data/comments/video_id_7005490661592026405.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7062230976969048847",
|
||||
"create_time": 1644303791,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "有人是突然想到她然后回来看的吗?[色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32605",
|
||||
"user_id": "1319887752674414",
|
||||
"sec_uid": "MS4wLjABAAAAsajtQ_gN7KWnTOtiwhAoK0tN-2UN1EezsxkBjQ5KDVtcKLs5s5x7Gi0CflHOcKgz",
|
||||
"short_user_id": "52108578959",
|
||||
"user_unique_id": "52108578959",
|
||||
"user_signature": "9.9转单么\n\n9.9转单找我(钱详淡)(私)\n\n9.9收集爱号者(●'◡'●)",
|
||||
"nickname": "哒咩",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_746d901d06e34683b6d11d247a4bf68f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "550",
|
||||
"last_modify_ts": 1711644155544
|
||||
},
|
||||
{
|
||||
"comment_id": "7006703172170023711",
|
||||
"create_time": 1631375215,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "刚刷到一个视频说李子柒消失了,赶紧过来看看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "108743",
|
||||
"user_id": "61193525008",
|
||||
"sec_uid": "MS4wLjABAAAAkIyJ8iCuaQSQ3cOb6NIaOSzapIdpSZFn6eCHg7BtXeI",
|
||||
"short_user_id": "74477430",
|
||||
"user_unique_id": "777520B",
|
||||
"user_signature": "我若成佛,天下无魔,我若成魔,佛奈我何。",
|
||||
"nickname": "可乐不加&冰",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_b08555aa06744ab1bd4a4aeea7a82118.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3423",
|
||||
"last_modify_ts": 1711644155550
|
||||
},
|
||||
{
|
||||
"comment_id": "7011421425307910950",
|
||||
"create_time": 1632473768,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "商品销售才是李子柒品牌真正赚大钱的业务。报道称,李子柒品牌商品2020年销售额16亿元。\n这块业务由微念负责,但李子柒本人并不持有微念股份。\n也就是,明明是靠李子柒的名气赚的钱,李子柒却一分都拿不到。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "52626",
|
||||
"user_id": "3372925042310584",
|
||||
"sec_uid": "MS4wLjABAAAAXqK9lVLa7x_R4TVv-zzLwAlCZIBJbxHWG2cYmWkCuy8d27olebWCAy6IpoUSHv1g",
|
||||
"short_user_id": "2996381079",
|
||||
"user_unique_id": "guoguo0755",
|
||||
"user_signature": "蝈蝈的锅",
|
||||
"nickname": "小果蔬蔬",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2e6f50002fee4de01d483.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1316",
|
||||
"last_modify_ts": 1711644155558
|
||||
},
|
||||
{
|
||||
"comment_id": "7071240262710248222",
|
||||
"create_time": 1646401424,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "今天是2022年3月4日。还有人在等更新吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "87472",
|
||||
"user_id": "2999943289377319",
|
||||
"sec_uid": "MS4wLjABAAAACU4aRr4HTRzzyct5Do2OwyOE-68KyDm615nklaucYmjFBJsQCFO0-9KQl8BDMOQn",
|
||||
"short_user_id": "25770354015",
|
||||
"user_unique_id": "25770354015",
|
||||
"user_signature": "女人的快乐很简单,赚钱,干饭,这衣服真好看",
|
||||
"nickname": "去冰不加糖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oYANnZfXngMf8JXfAZ8AMy2fyIbwXACQD9AKDC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "6940",
|
||||
"last_modify_ts": 1711644155568
|
||||
},
|
||||
{
|
||||
"comment_id": "7005491672319050511",
|
||||
"create_time": 1631093137,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "大家是喜欢她人呢,还是做菜呢[呲牙]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15174",
|
||||
"user_id": "101859539382",
|
||||
"sec_uid": "MS4wLjABAAAArLPrIQLnDUS7F_CTIROSfwXKpLdqJZkpq_-sTeZNWKM",
|
||||
"short_user_id": "1177111633",
|
||||
"user_unique_id": "yiranshishao67",
|
||||
"user_signature": "简单的生活何尝不是一场华丽的冒险!",
|
||||
"nickname": "一半醒、",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ochmAzfEXAfcAItNAgKdjCl9zD9S3A3QhIRCAp.jpeg?from=2956013662",
|
||||
"sub_comment_count": "784",
|
||||
"last_modify_ts": 1711644155576
|
||||
},
|
||||
{
|
||||
"comment_id": "7287433606468469504",
|
||||
"create_time": 1696737874,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2023年10月8日,我又来看你了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6208",
|
||||
"user_id": "93533375923",
|
||||
"sec_uid": "MS4wLjABAAAAfoYmwnj8TSoODMRSceZd_XPiaeNJtnwyR666b66c1p4",
|
||||
"short_user_id": "372426274",
|
||||
"user_unique_id": "xxxx0112468",
|
||||
"user_signature": "有趣的灵魂万里挑一\n这两年乃至未来很长一段时间我都会专注于生活,账号随机更新,也会一直支持千玺,为他打call ✊",
|
||||
"nickname": "鹤与十一",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_owAEZlEgC0AelDwBDU9MK8bvAcngACAIfAylFz.jpeg?from=2956013662",
|
||||
"sub_comment_count": "87",
|
||||
"last_modify_ts": 1711644155584
|
||||
},
|
||||
{
|
||||
"comment_id": "7009314063381447436",
|
||||
"create_time": 1631983111,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "李子柒螺蛳粉真是李子柒做的吗[抠鼻]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6732",
|
||||
"user_id": "75464261191",
|
||||
"sec_uid": "MS4wLjABAAAAsJbW1irwKNbX7m5-5VDgeeSDrOX0zz1LPAlPxz1LZlc",
|
||||
"short_user_id": "183351702",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "ヤ尐冇铭忾ベ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_840429de0c0046dab9c4df29e3b52ee6.jpeg?from=2956013662",
|
||||
"sub_comment_count": "434",
|
||||
"last_modify_ts": 1711644155592
|
||||
},
|
||||
{
|
||||
"comment_id": "7351429793537639206",
|
||||
"create_time": 1711638134,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年3月28日我来看你",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10",
|
||||
"user_id": "72518334952",
|
||||
"sec_uid": "MS4wLjABAAAAD30Wzgi71SMNDRXGlkxCQeI_iAAviBIsfSCEXRDkvvE",
|
||||
"short_user_id": "99339326",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "奋斗的鱼🐟是一个勤劳,勇敢,智慧,积极,有爱心,负责任的男人!",
|
||||
"nickname": "京冬家电",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_72fcabdf547b4f599af6d5c6f2867c91.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155600
|
||||
},
|
||||
{
|
||||
"comment_id": "7006694628808934185",
|
||||
"create_time": 1631373222,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "刚刷到了一个视频说子柒报警了48天没更新,我赶紧过来看看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4389",
|
||||
"user_id": "646157003654567",
|
||||
"sec_uid": "MS4wLjABAAAAi7h60Tf7g-2JGyIN0nRi0qBAm2d7ERWIv9T61yzm6DM",
|
||||
"short_user_id": "2951088289",
|
||||
"user_unique_id": "L8881a",
|
||||
"user_signature": "没什么特别 就是特别善良",
|
||||
"nickname": "-憨憨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_5e49fa6c396c0bd7a6d3a980180a7f28.jpeg?from=2956013662",
|
||||
"sub_comment_count": "128",
|
||||
"last_modify_ts": 1711644155608
|
||||
},
|
||||
{
|
||||
"comment_id": "7005492403675251469",
|
||||
"create_time": 1631093309,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "我的愿望,去子柒家吃顿饭[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10819",
|
||||
"user_id": "78821150466",
|
||||
"sec_uid": "MS4wLjABAAAAeMVjpMjLjG02eNnrENKLX1NBFa3WuZr-qM56YYFAPqI",
|
||||
"short_user_id": "146035172",
|
||||
"user_unique_id": "QQ888888888Q",
|
||||
"user_signature": "乐安!一步一安然……",
|
||||
"nickname": "天晴的城市~",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f82f965e1f73237399dbdaa13ee2de67.jpeg?from=2956013662",
|
||||
"sub_comment_count": "251",
|
||||
"last_modify_ts": 1711644155616
|
||||
},
|
||||
{
|
||||
"comment_id": "7008391438765998884",
|
||||
"create_time": 1631768293,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "我认识一个李佳佳,不管年龄,长相都和李子柒很像,老家也是一个地方的。08年在深圳上班的。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4602",
|
||||
"user_id": "93532932066",
|
||||
"sec_uid": "MS4wLjABAAAA-k_wewvcS9gYwVrA-x2RejhNZiXOq6H9Cv2W2KALLTU",
|
||||
"short_user_id": "372399080",
|
||||
"user_unique_id": "34570584229",
|
||||
"user_signature": "",
|
||||
"nickname": "34570584229",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_25a7e7a24def4c03aced93e9118a4bf1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "66",
|
||||
"last_modify_ts": 1711644155625
|
||||
},
|
||||
{
|
||||
"comment_id": "7005491788668617509",
|
||||
"create_time": 1631093166,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "子柒好久没发新作品了[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4639",
|
||||
"user_id": "2757191301071324",
|
||||
"sec_uid": "MS4wLjABAAAAryk2FkW7fUe2qQnyhLumcGSwWUhnV0y3Gyn0OM8ohP5hQyKy5lp1F_dfDEj0q7mH",
|
||||
"short_user_id": "2802073498",
|
||||
"user_unique_id": "dycm2ljq0i1d",
|
||||
"user_signature": "两个男宝的妈,85后老阿姨。关注我就是好朋友,一起耍!",
|
||||
"nickname": "嘉博麻麻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_bfb8ed47401c416798623a6332e15749.jpeg?from=2956013662",
|
||||
"sub_comment_count": "150",
|
||||
"last_modify_ts": 1711644155633
|
||||
},
|
||||
{
|
||||
"comment_id": "7005495052697404195",
|
||||
"create_time": 1631093924,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "人间烟火气,最抚凡人心[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3642",
|
||||
"user_id": "71164351236",
|
||||
"sec_uid": "MS4wLjABAAAAL_FEOEYEmnKnxs1w04mL5fD_HuB-k-qkacxxOQCqnRM",
|
||||
"short_user_id": "334323259",
|
||||
"user_unique_id": "pepsi98k",
|
||||
"user_signature": "😒",
|
||||
"nickname": "白纸 🌈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c99d1802a34c44251af87ef85c0dc4f2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "15",
|
||||
"last_modify_ts": 1711644155642
|
||||
},
|
||||
{
|
||||
"comment_id": "7007013723529626408",
|
||||
"create_time": 1631447517,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "有没有和我一样刷到说消失了,特意过来看看有没有更新[呲牙]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3841",
|
||||
"user_id": "102878296983",
|
||||
"sec_uid": "MS4wLjABAAAAfSand3YL2R55uHXK7_I3EhaW0BqcEDEOuFaTdQRPp8w",
|
||||
"short_user_id": "1259524194",
|
||||
"user_unique_id": "79947980wxk",
|
||||
"user_signature": "🌷🍁80后全职宝妈一枚🍁🌷\n🍭🍭爱好跑步🏃摄影🍬唱歌🎤🍭🍭\n 🍄🍄平时记录宝贝的生活点滴🍄🍄\n💋💋猪羽宝贝破壳日:2019.8.8💋💋\n🌸🌸谢谢优秀你的关注🌸🌸",
|
||||
"nickname": "💋宸羽宝貝成长记💋",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osyeMf6DAS9DAQxILC8lAXBnggDhAABoblPASH.jpeg?from=2956013662",
|
||||
"sub_comment_count": "104",
|
||||
"last_modify_ts": 1711644155652
|
||||
},
|
||||
{
|
||||
"comment_id": "7072405013045641996",
|
||||
"create_time": 1646672633,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2022年3月7号,还有人等更新吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4778",
|
||||
"user_id": "103154956760",
|
||||
"sec_uid": "MS4wLjABAAAABSthgSHyyaWF2_POQd1JsqQfRctANyTsA8P8S9741xI",
|
||||
"short_user_id": "1290494264",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "太阳天蝎",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c346bb667c649d33b25dd9c45bd732ec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "277",
|
||||
"last_modify_ts": 1711644155660
|
||||
},
|
||||
{
|
||||
"comment_id": "7091145997988414243",
|
||||
"create_time": 1651036097,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "今天是2022年4月27日,还有人在等更吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4726",
|
||||
"user_id": "43606405822984",
|
||||
"sec_uid": "MS4wLjABAAAA5pJIkqNaYlT6A2L_SMROJdJzHehGdAKEj-c2kzIT5NY",
|
||||
"short_user_id": "3629792680",
|
||||
"user_unique_id": "dyxm493x3xaq",
|
||||
"user_signature": "🌈让你触动心灵的从来不是文字\n🌈而是似曾相识的经历和回忆\n🌈总有一首音乐,一段文字触及到你\n❤ 抱我回家,我宠你\n❤️每日更新",
|
||||
"nickname": "人到中年",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_18db481adc844db598ad32bc8d5e8122.jpeg?from=2956013662",
|
||||
"sub_comment_count": "227",
|
||||
"last_modify_ts": 1711644155668
|
||||
},
|
||||
{
|
||||
"comment_id": "7332879129488048950",
|
||||
"create_time": 1707318970,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "今天是2024年2月7号,等你回来[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45",
|
||||
"user_id": "92546977046",
|
||||
"sec_uid": "MS4wLjABAAAAFuOh6FMpfgTDoC68jB7dubgT3BXbSisILa_toDjFrZg",
|
||||
"short_user_id": "343426760",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "Flowing Water",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_a538548d43c847c980e1ac66ece0263a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155676
|
||||
},
|
||||
{
|
||||
"comment_id": "7338995279817360163",
|
||||
"create_time": 1708742998,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "这个时候他都没发视频了[泣不成声][泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "49",
|
||||
"user_id": "69179352152",
|
||||
"sec_uid": "MS4wLjABAAAABRF7vum7Li8sPSkH7WIRS6cJNUeZxdGeEf8mnLpclqc",
|
||||
"short_user_id": "2802895224",
|
||||
"user_unique_id": "WMBZSHBH",
|
||||
"user_signature": "状态:思💰想厚",
|
||||
"nickname": "Miss.L",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oIfEGCheBPlj5E5HrK5DAjIH7Af6AUc2BAEJAy.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155681
|
||||
},
|
||||
{
|
||||
"comment_id": "7339510471668990760",
|
||||
"create_time": 1708862951,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "看了九月的又回来看了一眼,希望你们别对她们这么大恶意,抖音需要你们[流泪][流泪][流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "18",
|
||||
"user_id": "215142887068669",
|
||||
"sec_uid": "MS4wLjABAAAAgIJKJSy2ChljsfNxhLSQFYNT3DpwXulzcWdjHJFvutI",
|
||||
"short_user_id": "3472716677",
|
||||
"user_unique_id": "w20041129",
|
||||
"user_signature": "Be a voice not an echo!\n永远的偶像:@托尼弗格森",
|
||||
"nickname": "Tony Ferguson",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4NaUACzlCbJ3VkfhAADkAEbAAX4NfJg89IQDB.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155685
|
||||
},
|
||||
{
|
||||
"comment_id": "7332147368923972378",
|
||||
"create_time": 1707148596,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年2月5日,李子柒你什么时候更新[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "16",
|
||||
"user_id": "105163030813",
|
||||
"sec_uid": "MS4wLjABAAAASJOw5iRE-5pIOTzBuSh9Muqd7fjF4YtqHE8iVYNDfpM",
|
||||
"short_user_id": "2261220425",
|
||||
"user_unique_id": "yao821128",
|
||||
"user_signature": "人生的脚步,常常走得太匆忙,所以我们要学会,停下来笑看风云,坐下来静赏花开,沉下来平静如海,定下来静观自在。心境平静无澜,万物自然得映,心灵静极而定,刹那便是永恒。",
|
||||
"nickname": "金玉儿(请勿连赞)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2414b00024304032197d5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644155690
|
||||
},
|
||||
{
|
||||
"comment_id": "7351451911835386687",
|
||||
"create_time": 1711643292,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024.03.29",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "68402125762",
|
||||
"sec_uid": "MS4wLjABAAAAf5YxKDEjXGhUZj2oNo89pGZMBpe6RXp2gwUX2BYM3DY",
|
||||
"short_user_id": "196010997",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "*^O^*是初宝呀*^O^*",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2d1bd000785c3f1436287.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156262
|
||||
},
|
||||
{
|
||||
"comment_id": "7351448836231856923",
|
||||
"create_time": 1711642573,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "@",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2621669211651502",
|
||||
"sec_uid": "MS4wLjABAAAA-tc5v7TTJJk2vEDMHwSsRhwn_KkWyTkxHxc2_JaRyODarfleebquLnZQ3vzdFOAQ",
|
||||
"short_user_id": "4158932469",
|
||||
"user_unique_id": "chennianxiao65",
|
||||
"user_signature": "共创伙伴:",
|
||||
"nickname": "陈年效",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_04895d7191d740ee9bd83e9fd92ebab1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156273
|
||||
},
|
||||
{
|
||||
"comment_id": "7351439709438214953",
|
||||
"create_time": 1711640444,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "每个人心中都有一个李子柒",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "690949442517527",
|
||||
"sec_uid": "MS4wLjABAAAAiblc9YOvYYJsDqmWihXUO6x7ymRmH84lkSlFIK6vARc",
|
||||
"short_user_id": "48898943777",
|
||||
"user_unique_id": "48898943777",
|
||||
"user_signature": "",
|
||||
"nickname": "隼",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4hBAABA7YPEAePLT4Ru2hVIgjjB2HAAGDFeEe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156289
|
||||
},
|
||||
{
|
||||
"comment_id": "7351432366437303080",
|
||||
"create_time": 1711638735,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "回来看看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "69054669445",
|
||||
"sec_uid": "MS4wLjABAAAAcG3vmiWUQOfBIpZ10tRRZ1cCPxTgur7wqQE1lVeEqpo",
|
||||
"short_user_id": "598074433",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "😀😀😀😀😀😀",
|
||||
"nickname": "古人云(❁´◡`❁)*✲゚*",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ocIBb8LCxEATBJn7QbqlAEAAD2Ge8GoeGEvA7f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156301
|
||||
},
|
||||
{
|
||||
"comment_id": "7351431191142744884",
|
||||
"create_time": 1711638461,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "期待",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "109469678115",
|
||||
"sec_uid": "MS4wLjABAAAAOS7KwWZGyScLT2eHZe7CrNlJy9Y_9VZEmG--YKVWW6k",
|
||||
"short_user_id": "1897699143",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "昆仑冈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3793_3114521287.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156312
|
||||
},
|
||||
{
|
||||
"comment_id": "7351425111608345354",
|
||||
"create_time": 1711637044,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年,期待回归",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "98093718882",
|
||||
"sec_uid": "MS4wLjABAAAA1VHjq8fxjVB1NMjOKfZhKW0eb-K_EddqJpr0hzSxxVg",
|
||||
"short_user_id": "1380370127",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "whh",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_5a66cd7e63804df8903e66f73850e4c0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156325
|
||||
},
|
||||
{
|
||||
"comment_id": "7351422949843714842",
|
||||
"create_time": 1711636542,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "24年了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "685691379913912",
|
||||
"sec_uid": "MS4wLjABAAAAcYhiPl298aLxdxzZXkCCr-vodgq4-JDWTpmNWBWBW_Y",
|
||||
"short_user_id": "81313645241",
|
||||
"user_unique_id": "81313645241",
|
||||
"user_signature": "祝我们好在春夏秋冬。",
|
||||
"nickname": "卜今妍",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocAQAH3A2fSIYAv2KAeFAXfZfQQPDI5iMDHCAm.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156337
|
||||
},
|
||||
{
|
||||
"comment_id": "7351419699458343743",
|
||||
"create_time": 1711635783,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "好像云南",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "559007240303608",
|
||||
"sec_uid": "MS4wLjABAAAAZcAVmAneczux0HQQ3hjiMfqd8Go_A8GgZhpyafnj6Nw",
|
||||
"short_user_id": "52779965485",
|
||||
"user_unique_id": "52779965485",
|
||||
"user_signature": "",
|
||||
"nickname": "黑礼服",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_9308e50a5db87b25f04bae31f4d20528.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156342
|
||||
},
|
||||
{
|
||||
"comment_id": "7351410284076679999",
|
||||
"create_time": 1711633592,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "什么时候更新[加鸡腿]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "72919692006",
|
||||
"sec_uid": "MS4wLjABAAAAshz1nuDcIyuT-xA1LV0PYhr0OLgQhxy7B7dNUVCVzwo",
|
||||
"short_user_id": "163683247",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "兴趣爱好:化妆🤣 \n职业:化妆师、发型师、纹绣师\n(2010开实体店至今)专业接发15年\n定期分享原创作品\n小店位于:合肥市巢湖市金码头一街 皇子工作室",
|
||||
"nickname": "皇子工作室",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_65815bcaa550e32b5d8860aa346e216d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156347
|
||||
},
|
||||
{
|
||||
"comment_id": "7351392225123271462",
|
||||
"create_time": 1711629386,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年了,不知道你什么时候才会回来[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4473266836353244",
|
||||
"sec_uid": "MS4wLjABAAAAI9NQq0pcx17ddYQXkHlGSptqvIW-n82Nq1KiVP0VCfVx2IZ2ddppIbQMrW7gwt0Y",
|
||||
"short_user_id": "69831387194",
|
||||
"user_unique_id": "69831387194",
|
||||
"user_signature": "",
|
||||
"nickname": "🌈人间🌈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEJvAO3D43QTAAemAIAg9NU8VbAYhfADAnsCgT.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156353
|
||||
},
|
||||
{
|
||||
"comment_id": "7351383240378991369",
|
||||
"create_time": 1711627295,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "为什么不更新了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101954268139",
|
||||
"sec_uid": "MS4wLjABAAAAJiUYJa4yXx0nFR1iTtdYJ-28AIf9qv0EZ94fK6P1sW4",
|
||||
"short_user_id": "1189555688",
|
||||
"user_unique_id": "520cm318",
|
||||
"user_signature": "90后小姐姐,感谢大家的关注,真心交朋友。",
|
||||
"nickname": "小辣椒🍀",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oI0sAAUD9DTb36G8fgAnRQAyIA1kYfnEpkqA8C.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156358
|
||||
},
|
||||
{
|
||||
"comment_id": "7351382969775407883",
|
||||
"create_time": 1711627232,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "还不回归",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "103995566698",
|
||||
"sec_uid": "MS4wLjABAAAAFXHG2C4wsXrkoyO_gGH45Deh_xqyE2ALmNuimctZXqE",
|
||||
"short_user_id": "1396180094",
|
||||
"user_unique_id": "Zy13319266",
|
||||
"user_signature": "该和生活对线了♐︎",
|
||||
"nickname": "爱吃蒸饵丝",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_okylCWjADXi8CHWAfglI6YkA90V1nAATAb8QfN.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156365
|
||||
},
|
||||
{
|
||||
"comment_id": "7351352558571602700",
|
||||
"create_time": 1711620156,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年3月28日 我又回来看你了[玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "104679374484",
|
||||
"sec_uid": "MS4wLjABAAAA6a_4WpMgpnyvFLD59Ytav46cRKc7HwFbVcVf5_emr38",
|
||||
"short_user_id": "1518119672",
|
||||
"user_unique_id": "zxj_0223",
|
||||
"user_signature": "窗外有风景,笔下有前途。\nTFBOYS💙💚❤️",
|
||||
"nickname": "張小潔。",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2c805f0ae0140356c0b9700feb66559e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156371
|
||||
},
|
||||
{
|
||||
"comment_id": "7351347546268468007",
|
||||
"create_time": 1711618986,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024年3月28日来看[比心]什么时候再更新呢?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "3284950607468455",
|
||||
"sec_uid": "MS4wLjABAAAAN1VAylRHYce_3_jqmONqtT3GGEJnEJtHobDAxZn11N3VJklzLZg55MBNP_pv9nzq",
|
||||
"short_user_id": "2840669672",
|
||||
"user_unique_id": "mujia97706",
|
||||
"user_signature": "",
|
||||
"nickname": "沐佳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oABwAldYDlTGAefGUACIAgAwWEA2CKnEAQAb9G.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156376
|
||||
},
|
||||
{
|
||||
"comment_id": "7351335155656852258",
|
||||
"create_time": 1711616101,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "什么时候回来呢?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "88139699494",
|
||||
"sec_uid": "MS4wLjABAAAAbrMSI5rn_QkvKMc1KT-Moj9TSP8hDyH0NJ5y5H_mAho",
|
||||
"short_user_id": "1535102522",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "吗喽的小花园",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocPeAIbnNEDq9glA9aCvDyZ2LCUAXDlAeAADIg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156381
|
||||
},
|
||||
{
|
||||
"comment_id": "7351314593933181747",
|
||||
"create_time": 1711611314,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "我们都在等你和啊婆回归喔[奋斗][奋斗][奋斗][奋斗][飞吻][飞吻][飞吻][飞吻]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "60280147244",
|
||||
"sec_uid": "MS4wLjABAAAAygtRnIovvHCaUH4Z0Uw5JSlLEnPy5qHmzj1OtesDNgY",
|
||||
"short_user_id": "14717531",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "一戴小饼干🍪",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2d4b40002f3b9d8f67736.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156387
|
||||
},
|
||||
{
|
||||
"comment_id": "7351312656970318627",
|
||||
"create_time": 1711610864,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "为什么不拍视频了呢?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "71182227826",
|
||||
"sec_uid": "MS4wLjABAAAATqFuW7X1l3jfS2VHtjV8BF5MCx_MK9JjdchNZxbePa8",
|
||||
"short_user_id": "267489795",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "过",
|
||||
"nickname": "平庸而不平凡",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oEPJhAWeg9O9AEIplAIDg4fgAUAxCINHC6A6zA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156392
|
||||
},
|
||||
{
|
||||
"comment_id": "7351307346449466164",
|
||||
"create_time": 1711609629,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "@李子柒还没有回来吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "107691587496",
|
||||
"sec_uid": "MS4wLjABAAAAWttW_fbw_rRK840lyQv_in2DiKpK7BytbZTmG0z_cCs",
|
||||
"short_user_id": "2296377090",
|
||||
"user_unique_id": "ZD19985067670",
|
||||
"user_signature": "",
|
||||
"nickname": "🌈黎梨,等你(爱霞)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogBrDEOIzPWSbCaKghtRA3AAvftoAyAAnH7ecb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156397
|
||||
},
|
||||
{
|
||||
"comment_id": "7351302150301025051",
|
||||
"create_time": 1711608416,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "2024.3.28",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "77529773372",
|
||||
"sec_uid": "MS4wLjABAAAAseT5puerbncccpKYgpLO0vkGCcYQhqFPb8mxnDlhWAc",
|
||||
"short_user_id": "141926029",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "想要看更远的风景,就需要跋涉千里!\n加油!越努力越幸运!",
|
||||
"nickname": "晓晓姐",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ocdElLchApeQAIuE1CfyAbDzgmDdAASktjYAnM.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156403
|
||||
},
|
||||
{
|
||||
"comment_id": "7351302080936788788",
|
||||
"create_time": 1711608402,
|
||||
"ip_location": "",
|
||||
"aweme_id": "7005490661592026405",
|
||||
"content": "今天是2024年3月28日,还有没有人和我一样等着更新视频吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "59163638330",
|
||||
"sec_uid": "MS4wLjABAAAAJrYTVt2hZN6ELNzal94cc_awolpLbIjNo3BkX6zpkvM",
|
||||
"short_user_id": "730504018",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "向阳而生,逆风翻盘",
|
||||
"nickname": "赵走不误",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_aafeac402ac7415a9be67abc1ab7cd0e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156409
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7005490661592026405.md
Normal file
882
public/data/comments/video_id_7110263965858549003.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7110441772949504808",
|
||||
"create_time": 1655528739,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "这个身材爆炸了。[泪奔][捂脸]帅帅的大女孩。[泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "663",
|
||||
"user_id": "1789616881150548",
|
||||
"sec_uid": "MS4wLjABAAAAcMB0hlkLT8JVU0DdqGOpBC4Dg2qujBT7gRL9pHvr1WQC30B26SIbTIuJdNQOmMyH",
|
||||
"short_user_id": "2798493505",
|
||||
"user_unique_id": "34229772780",
|
||||
"user_signature": "",
|
||||
"nickname": "Adanqiangpim23",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "26",
|
||||
"last_modify_ts": 1711644159578
|
||||
},
|
||||
{
|
||||
"comment_id": "7110278983413646116",
|
||||
"create_time": 1655490906,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "还是你奶茶妹最会跳舞了[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "252",
|
||||
"user_id": "91953070539",
|
||||
"sec_uid": "MS4wLjABAAAAvY-8_CFzx5KWo4agf5QC6fgcMsCIeeiHTSzo9nSNNUM",
|
||||
"short_user_id": "382597019",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "下雨不打伞",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_525ef8fa4f98492cbd7349c1ec6c1b5f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644159596
|
||||
},
|
||||
{
|
||||
"comment_id": "7286087272439497487",
|
||||
"create_time": 1696424397,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "同样都是奶茶妹,命运确截然相反",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "83",
|
||||
"user_id": "98801915342",
|
||||
"sec_uid": "MS4wLjABAAAAMz7ukd9229SoymI5ypbOWbVfYI9y0fEIhXhSXsYHvtc",
|
||||
"short_user_id": "959952708",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "善良可贵的人",
|
||||
"nickname": "坚…",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMUv5ADzyC9PwogfhAA3DAEaAAZut9NgieI8Dh.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644159606
|
||||
},
|
||||
{
|
||||
"comment_id": "7241145974147138342",
|
||||
"create_time": 1685960686,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "身材到位的[强]表情还🉐️练练[绝望的凝视][绝望的凝视][绝望的凝视]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "26",
|
||||
"user_id": "69777309426",
|
||||
"sec_uid": "MS4wLjABAAAASWToods-t0bRiyzsYHasUGrh8_sccqI--WPpEU4d-Uc",
|
||||
"short_user_id": "1143103135",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "我是一匹野马!放荡不羁爱自由",
|
||||
"nickname": "TL.烛阴",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_127248aca185c91f474e06a6cf188657.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159615
|
||||
},
|
||||
{
|
||||
"comment_id": "7110372694898918184",
|
||||
"create_time": 1655512671,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "我还没开声音,看动作,居然都知道是啥背景音乐[泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "69",
|
||||
"user_id": "3962287408820948",
|
||||
"sec_uid": "MS4wLjABAAAAEuPeExohEL14F2_0oBJdGWd4N0_39_VzC5DlWxJwRuwf_RtHRt-pJ1OGBd4VOVsn",
|
||||
"short_user_id": "2279626157",
|
||||
"user_unique_id": "Hadajojo7758",
|
||||
"user_signature": "保持微笑吧",
|
||||
"nickname": "♞饺子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_af16b5a5f93c44c7851740bc1425d8d5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644159625
|
||||
},
|
||||
{
|
||||
"comment_id": "7110592663027516167",
|
||||
"create_time": 1655563870,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "抖音真懂我,天天给我推送美女",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "24",
|
||||
"user_id": "2752765307129531",
|
||||
"sec_uid": "MS4wLjABAAAA_1phxyPTiOIsY6mar1DueAjPFiH2OzWDmviXc-J3-M2HRD_RBvR7_oTlTyk4WSBS",
|
||||
"short_user_id": "3329370571",
|
||||
"user_unique_id": "Even_wei",
|
||||
"user_signature": "北京远郊土著\n喜欢旅游、摄影、骑行、驾驶;\n有一颗越野的心没有越野的装备😂😂😂",
|
||||
"nickname": "请叫我六哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_0f7b16a854e0a78cce89bd552b4ef6d4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644159634
|
||||
},
|
||||
{
|
||||
"comment_id": "7239904821518582540",
|
||||
"create_time": 1685671708,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "娶她要注意什么[抠鼻]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "26",
|
||||
"user_id": "75304968338",
|
||||
"sec_uid": "MS4wLjABAAAAkDpnsLMt6LVDZQ9uEYK0df_CiAoB17ec84f9ZdlXKuQ",
|
||||
"short_user_id": "797285824",
|
||||
"user_unique_id": "By9788888",
|
||||
"user_signature": "人生没有对错,只有选择后的坚持,不后悔,走下去,就是对的。走着走着,花就开了。人生,靠的不是时间,靠的是珍惜。抱最大希望,尽最大努力,做最坏打算,持最好心态。记住该记住的,忘记该忘记的,改变能改变的,接受成事实的。太阳总是新的,每天都是美好的日子。",
|
||||
"nickname": "👌华少少少",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_d87ae4957e371613f4754957fe78a073.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644159643
|
||||
},
|
||||
{
|
||||
"comment_id": "7248136650961240866",
|
||||
"create_time": 1687588333,
|
||||
"ip_location": "青海",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "她的肚脐眼为啥这么大[酷拽]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "18",
|
||||
"user_id": "2985887082491244",
|
||||
"sec_uid": "MS4wLjABAAAAAY4u8O0MFi9DH3Afa32rwJLAU8dQ-QX2JVpdkBOGJGW00QH5ci5-mPKsn8-YyNj1",
|
||||
"short_user_id": "2796940011",
|
||||
"user_unique_id": "JW9500",
|
||||
"user_signature": "一个话多的♌,\n爱茶爱酒爱短发,\n幸会,祝好。",
|
||||
"nickname": "罅桑",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_a95314dae6ed438a8377505d5886f3c7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159652
|
||||
},
|
||||
{
|
||||
"comment_id": "7275563235071083327",
|
||||
"create_time": 1693974084,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "怎么还300多万2年没涨了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "28",
|
||||
"user_id": "93390010814",
|
||||
"sec_uid": "MS4wLjABAAAACob6Pm6IIWwzbyqOs0xTcIPmOAba2zqm6PrV8F7ASdg",
|
||||
"short_user_id": "365794307",
|
||||
"user_unique_id": "meme8",
|
||||
"user_signature": "运动,健身。",
|
||||
"nickname": "嚒嚒茶",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_cc247531f97e2688ff858a6067251ca1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644159661
|
||||
},
|
||||
{
|
||||
"comment_id": "7207734425630950199",
|
||||
"create_time": 1678181459,
|
||||
"ip_location": "黑龙江",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "这是章泽天吗?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32",
|
||||
"user_id": "64268645987",
|
||||
"sec_uid": "MS4wLjABAAAAtCDj2mRu-tmoM9tGL2-g5SwYRF53r0qWJ7UareTNOZI",
|
||||
"short_user_id": "376897151",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "人山人海,别辜负了相遇",
|
||||
"nickname": "💋凉",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4A2ANHVzAAyfACAVwhhEqE6mCCIyddgLqeuPA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "14",
|
||||
"last_modify_ts": 1711644159672
|
||||
},
|
||||
{
|
||||
"comment_id": "7245623733279703840",
|
||||
"create_time": 1687003246,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "谁家的姑娘",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "29",
|
||||
"user_id": "4015830180572792",
|
||||
"sec_uid": "MS4wLjABAAAAOk6ajoGf7ebb--9fEPcT-iG61FgVWHJzGrprJlaVfWN5_piEabSPwbE_gklUA9Oi",
|
||||
"short_user_id": "62056626483",
|
||||
"user_unique_id": "62056626483",
|
||||
"user_signature": "",
|
||||
"nickname": "小白",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_4a1fed0958dc4277841f1a061f3a7fce.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159682
|
||||
},
|
||||
{
|
||||
"comment_id": "7254436227901457189",
|
||||
"create_time": 1689055066,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "长得也还可以吧 但是对比真奶茶妹感觉还是有种华强北的感觉 哈",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22",
|
||||
"user_id": "108264874614",
|
||||
"sec_uid": "MS4wLjABAAAAVFliEo0YYr_5i5CpCo94ScS17ubuShsh06HBnKaXlNo",
|
||||
"short_user_id": "1942559837",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "早早睡早早起",
|
||||
"nickname": "Wxx",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_824f86bd501766dc3a30ab7ee7e50f4d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159823
|
||||
},
|
||||
{
|
||||
"comment_id": "7110530441874752293",
|
||||
"create_time": 1655549385,
|
||||
"ip_location": "吉林",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "这身材,无敌了[色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "35",
|
||||
"user_id": "75740735167",
|
||||
"sec_uid": "MS4wLjABAAAAMXtSc9cTVPPxwBWiHGsgjkcfBJd-JT9wTCotH5cH--4",
|
||||
"short_user_id": "786773998",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "不叫地主,不代表没有王炸,",
|
||||
"nickname": "海鑫、🙈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_7b77002ec92941c67f51.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644159847
|
||||
},
|
||||
{
|
||||
"comment_id": "7133949588076184320",
|
||||
"create_time": 1661002081,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "壹哥的口味嘎嘎滴[看][666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "19",
|
||||
"user_id": "98366039237",
|
||||
"sec_uid": "MS4wLjABAAAAneSs0Tcax_Lur_FPJ7jIpQXOnEFsDEP8cqm143Xwi-Y",
|
||||
"short_user_id": "930022732",
|
||||
"user_unique_id": "sh930022732",
|
||||
"user_signature": "枫",
|
||||
"nickname": "Show1",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_9a0db93b62366102d5b3cf9829956a52.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644159871
|
||||
},
|
||||
{
|
||||
"comment_id": "7241595253568095010",
|
||||
"create_time": 1686065300,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "环肥燕瘦各有千秋",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22",
|
||||
"user_id": "52964997052",
|
||||
"sec_uid": "MS4wLjABAAAABOmHVU-PVX12WqpUZap-mmmoB0SMx-Bcw63VkeWmUJs",
|
||||
"short_user_id": "28259605",
|
||||
"user_unique_id": "dingrupeng",
|
||||
"user_signature": "冰冻三尺非一日之寒\n水滴石穿非一日之功\n\n宠辱不惊 看庭前花开花落\n去留无意 望天空云卷云舒\n\n山林不向四季起誓 荣枯随缘\n海洋不需对岸承诺 遇合尽兴",
|
||||
"nickname": "天地本宽而鄙者自隘",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oU2IrTHqBnqfyEtf0qeHAqQD7AYFAmxbBAELA6.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159901
|
||||
},
|
||||
{
|
||||
"comment_id": "7229094127186035489",
|
||||
"create_time": 1683154651,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "真带劲",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10",
|
||||
"user_id": "96879609180",
|
||||
"sec_uid": "MS4wLjABAAAAz3iBOXJcanNje8F2Db76t1ElQ1_uineqdUjwAnp0cYg",
|
||||
"short_user_id": "803179472",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "博我以文,约我以礼,欲罢不能,Hi · 勇哥来啦!",
|
||||
"nickname": "小孙OK",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_5832886b31b20cc092c4b8bd0ff47add.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159931
|
||||
},
|
||||
{
|
||||
"comment_id": "7235877915845739322",
|
||||
"create_time": 1684734124,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "要命了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "26",
|
||||
"user_id": "84327081224",
|
||||
"sec_uid": "MS4wLjABAAAAg8CZfC_vZsizRTkiQQemhG4C-8t8Ov1PuryPFIMudGE",
|
||||
"short_user_id": "843060678",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "zy",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_617e9349b44d516b980290b2174654c8.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159957
|
||||
},
|
||||
{
|
||||
"comment_id": "7110523103343854351",
|
||||
"create_time": 1655547676,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "墙五米,人四米半",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45",
|
||||
"user_id": "2862721139221591",
|
||||
"sec_uid": "MS4wLjABAAAAr-q32jqicBVXgh246oGPZKUjA1wWmbxn7r7UGJ1ToycRfxrzJGyS8VmofJXl6_rp",
|
||||
"short_user_id": "2322922008",
|
||||
"user_unique_id": "h518988h",
|
||||
"user_signature": "散打,搏击,健身\n恋人:@Mina(米娜)",
|
||||
"nickname": "K、",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b142bb3a9092de1bcdaa108372cffc5f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159984
|
||||
},
|
||||
{
|
||||
"comment_id": "7206308138768368444",
|
||||
"create_time": 1677849368,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "带劲",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15",
|
||||
"user_id": "59318019034",
|
||||
"sec_uid": "MS4wLjABAAAAgb5mDr_sW_bdwd-ftDfnNk4AN_J4wNM3okKg6_fBdm0",
|
||||
"short_user_id": "147889512",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "一杯不加糖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4QA3tHQrgOezMAIAWHhABCC5AyfELvEyvKQAC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160011
|
||||
},
|
||||
{
|
||||
"comment_id": "7114279755742380840",
|
||||
"create_time": 1656422338,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "靓丽修身气质爆棚超级可爱版[爱心][比心][比心][比心][玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "23",
|
||||
"user_id": "100032905222",
|
||||
"sec_uid": "MS4wLjABAAAA7Kl6I2zYCguh6wBj1JXxrd-VaFS6b_GynjujiwZ5LYs",
|
||||
"short_user_id": "1048472218",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "感谢你的陪伴,🙏有你真好❤️🌹🌹🌹",
|
||||
"nickname": "海韵!🎧",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_23491108ff82c8ef4a197d37a71c1015.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160037
|
||||
},
|
||||
{
|
||||
"comment_id": "7350704073085371163",
|
||||
"create_time": 1711469167,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[发呆]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2758006998585080",
|
||||
"sec_uid": "MS4wLjABAAAALjG-Zbhd1wehSt9zduBLWUSxahU6NkXPqLH5aUS27_im3ERYTBUP4GoZikILtB3M",
|
||||
"short_user_id": "30113334344",
|
||||
"user_unique_id": "30113334344",
|
||||
"user_signature": "我们都爱过,伤过,痛过,恨过,就是没瘦过",
|
||||
"nickname": "ღ 龙",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oIAqx9EgCHAfNh2wCsejAUtFACzvACAIpAXy5m.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160895
|
||||
},
|
||||
{
|
||||
"comment_id": "7349843611682571019",
|
||||
"create_time": 1711268822,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "102178412974",
|
||||
"sec_uid": "MS4wLjABAAAA1obEIDx8C6nk_KqVDTOkVD36DS5gUQnfq7rrU1YtIJQ",
|
||||
"short_user_id": "1208523198",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "我比au更爱方圆",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c22d328700764593b004dd9b4b027155.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160909
|
||||
},
|
||||
{
|
||||
"comment_id": "7347290792236696355",
|
||||
"create_time": 1710674447,
|
||||
"ip_location": "内蒙古",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "@卡市阿浩 回礼了啊[呲牙]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "108790603328",
|
||||
"sec_uid": "MS4wLjABAAAAU80HNmZxZURCMU_OSXCdmqsC3Gm969VjsQIBBCAJfds",
|
||||
"short_user_id": "1828101799",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "万般皆是命,半点不由人啊!!!",
|
||||
"nickname": "狮驼岭小钻风",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c5e9bf96dbbe485d9efd3abc6eae097e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644160921
|
||||
},
|
||||
{
|
||||
"comment_id": "7345005880431969062",
|
||||
"create_time": 1710142451,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "105014727648",
|
||||
"sec_uid": "MS4wLjABAAAAIYlhksSEp5MyTob9qh181qQRMED8RIZUzf2jdNOX2UM",
|
||||
"short_user_id": "1589025157",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "用户638178",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_c83e0000dab6d7235068.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160933
|
||||
},
|
||||
{
|
||||
"comment_id": "7343937564514435880",
|
||||
"create_time": 1709893714,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3624461763114910",
|
||||
"sec_uid": "MS4wLjABAAAAVk53GMNg1QnM1048PPlQcG258iy0xGv-i0eoBU5FZbPkVVNB8X1d8gTeJtpLP2Ng",
|
||||
"short_user_id": "31035048773",
|
||||
"user_unique_id": "31035048773",
|
||||
"user_signature": "",
|
||||
"nickname": "T",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_2068749c2f24490eae4f0664dd36d1db.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160945
|
||||
},
|
||||
{
|
||||
"comment_id": "7343523104054297395",
|
||||
"create_time": 1709797216,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "62824277657",
|
||||
"sec_uid": "MS4wLjABAAAASJw-EnlnMXGjunaeSIrH5M9oKC5eYS0jaBUcG-mPLq4",
|
||||
"short_user_id": "31818609",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "欧少",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_62bc7702e70586acf6519f26bd7576f5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160955
|
||||
},
|
||||
{
|
||||
"comment_id": "7340879497874457379",
|
||||
"create_time": 1709181701,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "2771",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "63168141694",
|
||||
"sec_uid": "MS4wLjABAAAAbKSKfhusR8nP2oS7-RKtjARCicDp7ZipAhUg3sJGkX8",
|
||||
"short_user_id": "3854144471",
|
||||
"user_unique_id": "dyje993pe7ru",
|
||||
"user_signature": "",
|
||||
"nickname": "小任性",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3797_2889309425.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160966
|
||||
},
|
||||
{
|
||||
"comment_id": "7347707544238392115",
|
||||
"create_time": 1710771480,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3338574101757380",
|
||||
"sec_uid": "MS4wLjABAAAAe6yFmCJPjXgxIZ49Uhm0EfVrinuWu4zXgr6deKvIWG11UTxhnGTBzMj35eEqRge8",
|
||||
"short_user_id": "66035209020",
|
||||
"user_unique_id": "66035209020",
|
||||
"user_signature": "",
|
||||
"nickname": "猴子🐒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ogAAwaDQIBAJGuTbee8GPYF02QkGqBASnEf7A9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160976
|
||||
},
|
||||
{
|
||||
"comment_id": "7339563142009553703",
|
||||
"create_time": 1708875217,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[色][色][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "550169700206180",
|
||||
"sec_uid": "MS4wLjABAAAAZ8FXLM-FjthGFgftTqAZQIVh_gMU1ukeR9QVzAoZ_Zs",
|
||||
"short_user_id": "59022825801",
|
||||
"user_unique_id": "59022825801",
|
||||
"user_signature": "我喜欢玩游戏(ฅ>ω<*ฅ)穿越火线逆站QQ 飞车吃鸡",
|
||||
"nickname": "我是刘飞",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEErg9Clwf8VtfmbJGDzvgAAC2ANA8dA5IAnhi.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160986
|
||||
},
|
||||
{
|
||||
"comment_id": "7339080404153271091",
|
||||
"create_time": 1708762819,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4129355232720749",
|
||||
"sec_uid": "MS4wLjABAAAA9kSMLATPOhB_zR-Y1Bo9snVinoU7u0ykJcKB3yNKylS5EUUlZeXw6MjXTO4v9lWV",
|
||||
"short_user_id": "3839457919",
|
||||
"user_unique_id": "dy32zaxmxbzo",
|
||||
"user_signature": "",
|
||||
"nickname": "宜达建材机械租赁有限公司",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ooemyAUlOABNAHXADPWIB9ECDfxbQ4wAATWgIn.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160997
|
||||
},
|
||||
{
|
||||
"comment_id": "7338077787019887410",
|
||||
"create_time": 1708529377,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "泰裤辣✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️✖️",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "102731817003",
|
||||
"sec_uid": "MS4wLjABAAAABFBhS-LeLa_hl3aqAhlfvpU8jxXedvVfbpFZGQKjO7M",
|
||||
"short_user_id": "2086878245",
|
||||
"user_unique_id": "Tim007321",
|
||||
"user_signature": "大风歌\n大风起兮云飞扬,\n威加海内兮归故乡,\n安得猛士兮守四方。",
|
||||
"nickname": "清风徐来༗",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_70139485d1e241c4a357f37711580198.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161006
|
||||
},
|
||||
{
|
||||
"comment_id": "7334676566997582646",
|
||||
"create_time": 1707737469,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "今天好像看见你了,上海黄河路",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "107683009666",
|
||||
"sec_uid": "MS4wLjABAAAAUpkNyW02OwtN8NRLTUB6ewYamXaIl4rQM_YD2QMmb98",
|
||||
"short_user_id": "2273955180",
|
||||
"user_unique_id": "dyvowyvn674j",
|
||||
"user_signature": "",
|
||||
"nickname": "圈外人",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3796_2975850990.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161120
|
||||
},
|
||||
{
|
||||
"comment_id": "7334508015217279782",
|
||||
"create_time": 1707698226,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "有没有80斤",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "97479044519",
|
||||
"sec_uid": "MS4wLjABAAAALmf-oPbjAeRo4KDj0ss-e3mc00QSF9xkLr1cwff5B4g",
|
||||
"short_user_id": "1911434821",
|
||||
"user_unique_id": "yuanfen1588",
|
||||
"user_signature": "🎬由于短剧原视频有版权,视频已经过剪辑有删减,想看具体剧情,请点击观看原剧 🎬更多好剧推荐给你看,关注我推荐给你更多精彩短剧",
|
||||
"nickname": "王宝宜短剧",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oI1XNOz5EfAlIgCiZAhDAUAAAGiBte6UyWvAgE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161135
|
||||
},
|
||||
{
|
||||
"comment_id": "7334352288267371279",
|
||||
"create_time": 1707661967,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1359454798613678",
|
||||
"sec_uid": "MS4wLjABAAAArZyVzEbaRVJC5ZhqVSIirCg90TPp2ry2rfajqdWMp8y0IsEcp1Q_At7xsbdz29PD",
|
||||
"short_user_id": "59018251886",
|
||||
"user_unique_id": "59018251886",
|
||||
"user_signature": "",
|
||||
"nickname": "锦衣术士",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3795_3047680722.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161148
|
||||
},
|
||||
{
|
||||
"comment_id": "7333941281116128054",
|
||||
"create_time": 1707566271,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1271453378158030",
|
||||
"sec_uid": "MS4wLjABAAAAbjla_Ipa7bcWuyHooYSjJZf_TwQAZAKbpw6EPdR5CUxw6p4SDXmEsR3djNSQDQJp",
|
||||
"short_user_id": "21653286656",
|
||||
"user_unique_id": "wfjilijvsrl",
|
||||
"user_signature": "一个很努力让自己生活变好的70后\n来自湖南,远嫁安徽的农村宝妈\n无声卡唱歌+加经验分享+带货\n开直播聊聊普通人如何做抖音\n来自陌生人的帮助才是更好的帮助",
|
||||
"nickname": "叶子妹",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4I7VELAeVlfk5LhnBEImQeCgAAEnAbPD5BAhX.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161164
|
||||
},
|
||||
{
|
||||
"comment_id": "7333080338816598847",
|
||||
"create_time": 1707365821,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "好久没看了 又瘦下来了 怎么感觉不一样了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "99501765476",
|
||||
"sec_uid": "MS4wLjABAAAAyij6QwaRhs_E8v9YHVcaM8n0dhv-21yJ446zcfOhvu0",
|
||||
"short_user_id": "1004848822",
|
||||
"user_unique_id": "6346898363whq",
|
||||
"user_signature": "低头看",
|
||||
"nickname": "稳住",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_9ce623aedb6e414a8f59cb02c8e5da35.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161179
|
||||
},
|
||||
{
|
||||
"comment_id": "7331913881278120743",
|
||||
"create_time": 1707094236,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "李萌",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "58954291110",
|
||||
"sec_uid": "MS4wLjABAAAAdvUf2LbSLBatrLO87C2QQz3hmBL3iUnCjsngBp69Zkk",
|
||||
"short_user_id": "7700462",
|
||||
"user_unique_id": "878451991x",
|
||||
"user_signature": "",
|
||||
"nickname": "郭🧊❤️",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_f947000b56d9695b0e5b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161192
|
||||
},
|
||||
{
|
||||
"comment_id": "7331732520092009226",
|
||||
"create_time": 1707052003,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "111427580500",
|
||||
"sec_uid": "MS4wLjABAAAAKkOQcOMi3hyceEibRmX6-dSqVOS-sC7LKUXLys68eoQ",
|
||||
"short_user_id": "2122135042",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "及时雨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_1ca92000103a75ac3e38f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161211
|
||||
},
|
||||
{
|
||||
"comment_id": "7331715039415845669",
|
||||
"create_time": 1707047933,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "[捂脸][捂脸][捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "67968195675",
|
||||
"sec_uid": "MS4wLjABAAAAywFlCqGxPUxSASVIJaqGs8TrAUmO4EkKyFr57NWeCQY",
|
||||
"short_user_id": "1746671965",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "👒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3793_3114521287.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161244
|
||||
},
|
||||
{
|
||||
"comment_id": "7331612462180188965",
|
||||
"create_time": 1707024053,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7110263965858549003",
|
||||
"content": "多年以后,我拿出奶茶妹的照片对儿子说“这是爸爸当年的女神”。结果儿子直接对我说“爸爸你骗人,这明明是妈妈”。我转身和正在厨房做饭的奶茶妹相视一笑",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "549388327064139",
|
||||
"sec_uid": "MS4wLjABAAAAwTsPiZMjgEu2tOh1VkcyBAVKhwz-aXiFi5bUE59ZMCM",
|
||||
"short_user_id": "2228435803",
|
||||
"user_unique_id": "GOKCY",
|
||||
"user_signature": "随手拍",
|
||||
"nickname": "GOKCYcom",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEEA2fy51CAqAOzkItgjANAghIs7buD8oBiAeX.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644161277
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7110263965858549003.md
Normal file
882
public/data/comments/video_id_7128686458763889956.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7128700999460832031",
|
||||
"create_time": 1659780051,
|
||||
"ip_location": "天津",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "还是开场这件好",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2440",
|
||||
"user_id": "3196995034687451",
|
||||
"sec_uid": "MS4wLjABAAAA8yM8RDVrRsKnVl3gW_k6VPw0xQ44yQAGfeZDDCrbFUQ0hZajjNTLsVs82-pY2_Br",
|
||||
"short_user_id": "66457810832",
|
||||
"user_unique_id": "66457810832",
|
||||
"user_signature": "",
|
||||
"nickname": "Ww",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_229fdc5613fb4e4e82c33296626bb6b7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "28",
|
||||
"last_modify_ts": 1711644153754
|
||||
},
|
||||
{
|
||||
"comment_id": "7128709634059535138",
|
||||
"create_time": 1659782058,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "房间开关一般安装高度1.3M",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "620",
|
||||
"user_id": "103058917050",
|
||||
"sec_uid": "MS4wLjABAAAA_7kxEGaf1RbGsDJa2Pa51tvD2zuYIewFXD4lCBV87PU",
|
||||
"short_user_id": "1279779883",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "民工",
|
||||
"nickname": "李戈戈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_81f6bcffff6bc8b2f2734915f84c254d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "32",
|
||||
"last_modify_ts": 1711644153756
|
||||
},
|
||||
{
|
||||
"comment_id": "7128688316475671307",
|
||||
"create_time": 1659777095,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "你的腿是真的长啊。[震惊][震惊][震惊]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "365",
|
||||
"user_id": "3202257132459950",
|
||||
"sec_uid": "MS4wLjABAAAA4jzGtWnBIuN4l1ifrRQlyM_zRDo20MwnBN_8NCPdkzHKkRnE_Xq71RnbMJIUzUql",
|
||||
"short_user_id": "38078278252",
|
||||
"user_unique_id": "38078278252",
|
||||
"user_signature": "各有归舟,各有渡口。",
|
||||
"nickname": "不丑温柔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_767663457ff74128b92128315ead78b5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644153757
|
||||
},
|
||||
{
|
||||
"comment_id": "7131110044033614624",
|
||||
"create_time": 1660340976,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "穿这露背装可要注意了。上次我去我朋友家他老婆新买的露背装非要我看。后来……穿反了[捂脸][捂脸][捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "130",
|
||||
"user_id": "98821162329",
|
||||
"sec_uid": "MS4wLjABAAAAAP9HGzLpB7Pnya2YHF61OZlyASjItY0Jb0hGa3ptaAA",
|
||||
"short_user_id": "961604955",
|
||||
"user_unique_id": "jx299517",
|
||||
"user_signature": "每天晚上20:00直播\n搞笑到无能为力,逗比到感动自己\n星图➕V:私❤\n从不会主动加任何人微信。应聘主播➕15242216600!!15042216600",
|
||||
"nickname": "于家村长(搞笑达人)团队招人",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b04d01b051207316a65ca21932c32e83.jpeg?from=2956013662",
|
||||
"sub_comment_count": "8",
|
||||
"last_modify_ts": 1711644153759
|
||||
},
|
||||
{
|
||||
"comment_id": "7128686838722888478",
|
||||
"create_time": 1659776755,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "这条裙子终于穿了@朝阳的娃儿👾 [色][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "64",
|
||||
"user_id": "2739632844317827",
|
||||
"sec_uid": "MS4wLjABAAAAgNeGTBkRx8bgT3vy5vNEF_SOMSqlMeP1q8mID71z84RorrEme_-4L2mrBz2rfToG",
|
||||
"short_user_id": "2977799237",
|
||||
"user_unique_id": "12345xiaolaohu",
|
||||
"user_signature": "每晚12:00直播 韩舞业余,专业蹦迪!\n虎的小号@杨巅峰🐑🐯 \n💜商务V:Joymedia7 💜\n💙这辈子人潮汹涌 遇到你 我很幸运💙",
|
||||
"nickname": "杨老虎🐯(磕穿下巴掉牙版)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f14282e10099a4b436a9ca62c0902595.jpeg?from=2956013662",
|
||||
"sub_comment_count": "12",
|
||||
"last_modify_ts": 1711644153761
|
||||
},
|
||||
{
|
||||
"comment_id": "7132513592851874591",
|
||||
"create_time": 1660667749,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "一般般",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "62",
|
||||
"user_id": "72662192803",
|
||||
"sec_uid": "MS4wLjABAAAAS5ZkUNAi4PSM1ZWIK0O1hOMv4310R1REGtq7po2rUR0",
|
||||
"short_user_id": "100529141",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "MT的老公",
|
||||
"nickname": "MT的老公",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2cd8900042f798d10dd03.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153763
|
||||
},
|
||||
{
|
||||
"comment_id": "7128663928885134087",
|
||||
"create_time": 1659782554,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "你数钱的那个动作特别帅",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "8",
|
||||
"user_id": "52885061495",
|
||||
"sec_uid": "MS4wLjABAAAA76iUrLrsqC-DJughaAGwlTFLrioUdw5b5Lc5JwirTjo",
|
||||
"short_user_id": "8838154",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "意义的旅行",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2409c000673945dc8a4fa.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644153765
|
||||
},
|
||||
{
|
||||
"comment_id": "7132885084260582158",
|
||||
"create_time": 1660754239,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "太会了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "47",
|
||||
"user_id": "94998935336",
|
||||
"sec_uid": "MS4wLjABAAAAdbwFQ1ppeHJPfFsHOhjsHUtVqMdI7zO84j2TkKJR4-E",
|
||||
"short_user_id": "582435671",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "交朋友",
|
||||
"nickname": "大卫",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_8a5d35e33ce8acfa933cd2f032aa91ec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153767
|
||||
},
|
||||
{
|
||||
"comment_id": "7137861404161475365",
|
||||
"create_time": 1661912956,
|
||||
"ip_location": "宁夏",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "我的女人",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "58",
|
||||
"user_id": "82671710917",
|
||||
"sec_uid": "MS4wLjABAAAAeDzWE-ueN-KTTEtlIPLYJXG-jX10HdXQ24R3NBqkVe0",
|
||||
"short_user_id": "3222568880",
|
||||
"user_unique_id": "dycqc3txh2m0",
|
||||
"user_signature": "走自己的路,样别人无路可走...........",
|
||||
"nickname": "好好走自己的",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_71ad000f8c81b289ece1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153769
|
||||
},
|
||||
{
|
||||
"comment_id": "7138279140779901726",
|
||||
"create_time": 1662010229,
|
||||
"ip_location": "黑龙江",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "怎么走道呢???",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "51",
|
||||
"user_id": "1442200069350839",
|
||||
"sec_uid": "MS4wLjABAAAASC2yyLvC02wq0oEi6ZyTsrDBVDjjhwL2440ryspFtD9fuHF9khtO1K8gGWHblgB-",
|
||||
"short_user_id": "4182502908",
|
||||
"user_unique_id": "dywh64zbetvb",
|
||||
"user_signature": "",
|
||||
"nickname": "笑看红尘",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3793_3131589739.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153770
|
||||
},
|
||||
{
|
||||
"comment_id": "7226321306987709236",
|
||||
"create_time": 1682509053,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "后面墙上的插座都成长方形了[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "65",
|
||||
"user_id": "4107376814724707",
|
||||
"sec_uid": "MS4wLjABAAAA_27V2cWYkmxzUiX6l-5R00EvgiMRE_t7v9AOtpbaaMK1uZswUNjuFF_qplfTXmI0",
|
||||
"short_user_id": "3500065301",
|
||||
"user_unique_id": "dyvm36wys59h",
|
||||
"user_signature": "欲买桂花同载酒, 终不似,少年游。",
|
||||
"nickname": "清风依旧",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_06a4644e65a6e19c29faea43fc29dea7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644153772
|
||||
},
|
||||
{
|
||||
"comment_id": "7132318861181993763",
|
||||
"create_time": 1660622398,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "后面那两件还没你第一套好看[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "79",
|
||||
"user_id": "85626162263",
|
||||
"sec_uid": "MS4wLjABAAAArJhTP_gsXY9PmxmPQaXGH1rKaIJTsvjmDBJagfevKRk",
|
||||
"short_user_id": "704415057",
|
||||
"user_unique_id": "BBW1",
|
||||
"user_signature": "你两手空空、为何心事重重。",
|
||||
"nickname": "阿 O",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_06dd53765c3a415a9740e642c0ab437f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644153774
|
||||
},
|
||||
{
|
||||
"comment_id": "7128702866088772365",
|
||||
"create_time": 1659780483,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "还不如第一套",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "138",
|
||||
"user_id": "96765937810",
|
||||
"sec_uid": "MS4wLjABAAAAM5uMsxHpi-8L7Bg7571VKyLyQsJS4YXbNwCYlAyeQ0U",
|
||||
"short_user_id": "784153794",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "-72。",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_6c636a9ec745591851f6adbcb416680c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644153775
|
||||
},
|
||||
{
|
||||
"comment_id": "7137500167603209001",
|
||||
"create_time": 1661838348,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "这衣服确实蛮好看的",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "28",
|
||||
"user_id": "3571653219466231",
|
||||
"sec_uid": "MS4wLjABAAAANykWWT2Wo_dHU-oVVBg-hbg4F76hlSogFsPX3AyBTuJPgxmtPErT4ZD5zXThtIlC",
|
||||
"short_user_id": "4174539047",
|
||||
"user_unique_id": "ltr891116",
|
||||
"user_signature": "123456",
|
||||
"nickname": "舞梦江湖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_f78a9a016b2040fa9bd51ea8c1b3ee2f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153777
|
||||
},
|
||||
{
|
||||
"comment_id": "7128709592737792799",
|
||||
"create_time": 1659782051,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "黑白的两件还是没有第一件好",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "58",
|
||||
"user_id": "93046141178",
|
||||
"sec_uid": "MS4wLjABAAAAKisF0fEGnLCo5m3IARC23PaAvoN4zmMFrvl8mASni8k",
|
||||
"short_user_id": "1111209068",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "逆流成河",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2f93b0000bdf2fd4c0e4c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644153779
|
||||
},
|
||||
{
|
||||
"comment_id": "7148005554803704576",
|
||||
"create_time": 1664274744,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "怎么都是同一个房间。看着像酒店",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "28",
|
||||
"user_id": "102288492031",
|
||||
"sec_uid": "MS4wLjABAAAARzoj3bpm8TX2xntNzY4joiEhbS3_nRAwvfOZKklcYz0",
|
||||
"short_user_id": "1221327846",
|
||||
"user_unique_id": "gobgxifacai888",
|
||||
"user_signature": "人防门安装!安全第一,质量为主。承接安徽人防门安装专业团队。质量好,让老板少操心",
|
||||
"nickname": "楝龙兴人防门安装(合肥安装队)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4d3649e2ee874f4f89c7a54a85f71020.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153781
|
||||
},
|
||||
{
|
||||
"comment_id": "7139718075007583009",
|
||||
"create_time": 1662345161,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "这个应该没有拉长腿",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "62",
|
||||
"user_id": "111499912455",
|
||||
"sec_uid": "MS4wLjABAAAAKoRjnAd2y13lhT-svJvZfbkSyASwtkzwPymX0Y0SaMg",
|
||||
"short_user_id": "2332375848",
|
||||
"user_unique_id": "pifubukeshiy",
|
||||
"user_signature": "",
|
||||
"nickname": "魏武遗风",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMkzECIxlzAcuSApAFfDAeyACAxgyC40IuNYgh.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153783
|
||||
},
|
||||
{
|
||||
"comment_id": "7137862948585063209",
|
||||
"create_time": 1661913238,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "好白[赞][赞][赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "54",
|
||||
"user_id": "67743273615",
|
||||
"sec_uid": "MS4wLjABAAAAp0_1FqtzoL941wJkpge2ExfpkuGPoDX0jHDkaqVOOVs",
|
||||
"short_user_id": "627759073",
|
||||
"user_unique_id": "Q15735088300",
|
||||
"user_signature": "",
|
||||
"nickname": "云游四方",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_24009000556d94db577ec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153784
|
||||
},
|
||||
{
|
||||
"comment_id": "7145395116960957220",
|
||||
"create_time": 1663666952,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "好老婆[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "53",
|
||||
"user_id": "68310694477",
|
||||
"sec_uid": "MS4wLjABAAAA8y_qJPS255STse-gLflZ5lrHNGFUC5zUkX9X2bptPlY",
|
||||
"short_user_id": "145325968",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "Lee大胆",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ooC4AC0xZfCArA4AEyhzCpNUIA5YgVaJACPPDe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153786
|
||||
},
|
||||
{
|
||||
"comment_id": "7129362331688043305",
|
||||
"create_time": 1659934028,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "不如第一套,毕竟不是每个人的体力都能坚持到你换第二套",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32",
|
||||
"user_id": "101544817847",
|
||||
"sec_uid": "MS4wLjABAAAAQbUPLt3R3btM1_6zqy0vLTIlunQoO6aXkqvqymMV0Mc",
|
||||
"short_user_id": "1143350686",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "没有姓名 ╲",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osozAnBEyAeKBnJbBAU4taKEoB75eAq8DIeEAk.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153788
|
||||
},
|
||||
{
|
||||
"comment_id": "7348911002341229349",
|
||||
"create_time": 1711051707,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "883645178981268",
|
||||
"sec_uid": "MS4wLjABAAAAr2WiLGjMpTygBlfYy39k0up0wH3YKXTlUb1USRtdE98",
|
||||
"short_user_id": "3699731620",
|
||||
"user_unique_id": "dyv0itqbe6um",
|
||||
"user_signature": "",
|
||||
"nickname": "一直在心间",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4aa9fa68099f4cc18fc7adedd07c0304.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154678
|
||||
},
|
||||
{
|
||||
"comment_id": "7348516069798347572",
|
||||
"create_time": 1710959775,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101394317255",
|
||||
"sec_uid": "MS4wLjABAAAA8v4MzJFsemQynRCPFAIZJFVyX-cAfHSQHmhtC74hS20",
|
||||
"short_user_id": "1130910983",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "永远的神:",
|
||||
"nickname": "锋喜哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEMIg88EJWAQAIynjf6WAPhAnzICt1AOeACADN.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154684
|
||||
},
|
||||
{
|
||||
"comment_id": "7345471814065226522",
|
||||
"create_time": 1710250933,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "@[赞][赞][比心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "663705362105149",
|
||||
"sec_uid": "MS4wLjABAAAA_3PepEDneo9e40ZOR3eTIqjUf-E86g4_OSgMmGiN6vs",
|
||||
"short_user_id": "2814464165",
|
||||
"user_unique_id": "cengjingyish44",
|
||||
"user_signature": "曾经亦是过去!",
|
||||
"nickname": "👩🏻🚀²²⁶曾经亦是过去",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oA8WpArmBAflASlAD7gSA9lCDYUbgfAAAJ4gQn.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154692
|
||||
},
|
||||
{
|
||||
"comment_id": "7344237327789163305",
|
||||
"create_time": 1709963510,
|
||||
"ip_location": "甘肃",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4503676407306728",
|
||||
"sec_uid": "MS4wLjABAAAAv_TombEUE4RsR9GDJ4o2zF5rJG9XKFnU30_vIGoo4fUrjiTsIK4mmKQsU-2GkKjT",
|
||||
"short_user_id": "3204005178",
|
||||
"user_unique_id": "dyw6zv3imcf6",
|
||||
"user_signature": "",
|
||||
"nickname": "今生缘份561",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_4d370002c5a01b6711b0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154701
|
||||
},
|
||||
{
|
||||
"comment_id": "7338316748176098088",
|
||||
"create_time": 1708585018,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[看][看][看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100446910339",
|
||||
"sec_uid": "MS4wLjABAAAABqG604ES2cv_cTWsIogdP5KMoI-vwW9IwXP_vpCynaQ",
|
||||
"short_user_id": "3666406553",
|
||||
"user_unique_id": "dyg4kfrcdz78",
|
||||
"user_signature": "等生死 齐万物",
|
||||
"nickname": "执笔绘星河",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_288d89c9c46f909bf011965fef5f3135.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154712
|
||||
},
|
||||
{
|
||||
"comment_id": "7337239242920608512",
|
||||
"create_time": 1708334142,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[比心][比心][比心][咖啡]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "105341520006",
|
||||
"sec_uid": "MS4wLjABAAAAGeKD8VE6TlAM7ExCJ9HClI4-eM5NgrdoyFhf02-K2wM",
|
||||
"short_user_id": "3476040766",
|
||||
"user_unique_id": "laoye56819",
|
||||
"user_signature": "",
|
||||
"nickname": "老爷",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e4816eb9acdb9cacded814de7f4868d5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154724
|
||||
},
|
||||
{
|
||||
"comment_id": "7335376690057610035",
|
||||
"create_time": 1707900480,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[嘴唇]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4344865903358080",
|
||||
"sec_uid": "MS4wLjABAAAAjZQ9owxo7g252K1lqdkZ9GbGwYJ1LDkOZKzVQXopNkLberaouMJAetv03_Dr2MD0",
|
||||
"short_user_id": "3824044352",
|
||||
"user_unique_id": "beijingdeqik",
|
||||
"user_signature": "色精病!😂🤣😆😄😃😜😚😘",
|
||||
"nickname": "北京的七库昕",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_1eeaa241f96343b6b47f343cffba2794.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154737
|
||||
},
|
||||
{
|
||||
"comment_id": "7333335109510562610",
|
||||
"create_time": 1707425157,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[饺子][福][惊喜][爱心][飞吻][舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "106618694331",
|
||||
"sec_uid": "MS4wLjABAAAAtPqBg04tz6KeuNOz4dWj2gc6nZKvDTH8m2zolS657Kw",
|
||||
"short_user_id": "1728625566",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "生命是场磨练和体验!",
|
||||
"nickname": "冯主",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_f79a000976cb643ebb6f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154748
|
||||
},
|
||||
{
|
||||
"comment_id": "7331702910214325026",
|
||||
"create_time": 1707045110,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[感谢][感谢][感谢]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "11820437026",
|
||||
"sec_uid": "MS4wLjABAAAAgd-nEqa6gqYUXhOE5JjJC0PcflEVG1O7wh6rJYqcN8A",
|
||||
"short_user_id": "3072731032",
|
||||
"user_unique_id": "dy4lg06eqalu",
|
||||
"user_signature": "",
|
||||
"nickname": "李哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/hotsoon-avatar_4f5fb626c32f4297bab6010ea724d676.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154758
|
||||
},
|
||||
{
|
||||
"comment_id": "7331582677348352809",
|
||||
"create_time": 1707017117,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "101750487952",
|
||||
"sec_uid": "MS4wLjABAAAATko-vbRMcjwX8qipYAUj24EOlhBK55-SLyLfT3O-_xs",
|
||||
"short_user_id": "1238885940",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "命里有时终须有,命里无时莫强求",
|
||||
"nickname": "一生只为爱等你",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_1736000013968dd21b24f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154768
|
||||
},
|
||||
{
|
||||
"comment_id": "7331421854031627034",
|
||||
"create_time": 1706979678,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "多少缘分,私聊啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "12787490502887",
|
||||
"sec_uid": "MS4wLjABAAAAcVtZfnIgZe2G4MtYSkevX0D49HDWEsxDM0U3NeISw9I",
|
||||
"short_user_id": "2324354084",
|
||||
"user_unique_id": "zq704560525",
|
||||
"user_signature": "",
|
||||
"nickname": "钟Q",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c25508ef96944ba9936cce9357702d09.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154778
|
||||
},
|
||||
{
|
||||
"comment_id": "7330171790063502143",
|
||||
"create_time": 1706688622,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "@🌸漩涡玖辛奈🌸 姐姐,想看你的约会战袍[送心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3609074079111376",
|
||||
"sec_uid": "MS4wLjABAAAARbkRDVfZOFRPJSa0otVrB6p8yGpKjNLMBVP29Y4bt4dNR4XtHZtdoRxOeJUDNLay",
|
||||
"short_user_id": "41008873454",
|
||||
"user_unique_id": "100863345.",
|
||||
"user_signature": "",
|
||||
"nickname": "和光同尘",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o0CDAkY5IfDAgAcAEyhzGltVIAu0gka6ANLt1e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644154784
|
||||
},
|
||||
{
|
||||
"comment_id": "7329402200626250533",
|
||||
"create_time": 1706509436,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[比心][比心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "71805177180",
|
||||
"sec_uid": "MS4wLjABAAAAnaraMrUjyTGKevY9xTqTe4sUicM3lJ1DSRnKO04N-28",
|
||||
"short_user_id": "3180788517",
|
||||
"user_unique_id": "dy6fndl2laju",
|
||||
"user_signature": "",
|
||||
"nickname": "温暖如春",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_a69352634722453a9622d57ba08cb3cf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154791
|
||||
},
|
||||
{
|
||||
"comment_id": "7327598240160350987",
|
||||
"create_time": 1706089418,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3380318885122536",
|
||||
"sec_uid": "MS4wLjABAAAAiEKoY6SomcT38S5wVhbnT0aT13G_2_lWOWHD156cfRiod8Qe4TPMI1iFgSwzQpFF",
|
||||
"short_user_id": "39736568403",
|
||||
"user_unique_id": "39736568403",
|
||||
"user_signature": "",
|
||||
"nickname": "道德",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3796_2975850990.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154797
|
||||
},
|
||||
{
|
||||
"comment_id": "7326361096137507625",
|
||||
"create_time": 1705801376,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "上小黄车啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "2430333590707924",
|
||||
"sec_uid": "MS4wLjABAAAA9agGGGWPKVgEkMjvFnXTmfYSs9Q8Olm9TW3gbL5bzeYie2W06MhjQQE3naqMR66h",
|
||||
"short_user_id": "50448980738",
|
||||
"user_unique_id": "dykem6272678",
|
||||
"user_signature": "",
|
||||
"nickname": "牛阿哥 666",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMEQA5IIZsATBTLEJekjBHDAinZebMAs7AEfEG.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154805
|
||||
},
|
||||
{
|
||||
"comment_id": "7330587299070165796",
|
||||
"create_time": 1706785364,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "84110612270",
|
||||
"sec_uid": "MS4wLjABAAAAKz4cpndVtQ-BSr6zr0_u9A1FaCCa85zWZ22eeUcrnIY",
|
||||
"short_user_id": "183768389",
|
||||
"user_unique_id": "Eros.995",
|
||||
"user_signature": "纵使文章惊海内,纸上苍生而已",
|
||||
"nickname": "琥珀L.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o0D9MfQ6WGbwAZniCgbMe5ADAcIBkAcjAW3lzA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154812
|
||||
},
|
||||
{
|
||||
"comment_id": "7325486022824542987",
|
||||
"create_time": 1705597635,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "109134298283",
|
||||
"sec_uid": "MS4wLjABAAAAAHzNw3U16wg2m0RfbInlnFcjroQrkngCvRbg9NHZyyo",
|
||||
"short_user_id": "2247084694",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "@可视化家居,转化,应用,落地方案🆚设计方案",
|
||||
"nickname": "可沐木尔尔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_4edf528bcc128cf71ea531d4c3ff55fb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154819
|
||||
},
|
||||
{
|
||||
"comment_id": "7325326409004811044",
|
||||
"create_time": 1705560466,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "为什么,现实看不到这样的女人",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "697535389764931",
|
||||
"sec_uid": "MS4wLjABAAAA3vCmfEYbsehDLgcx6Z-GZ88_r_1BD5QpUhmd4j1knwg",
|
||||
"short_user_id": "80971320710",
|
||||
"user_unique_id": "80971320710",
|
||||
"user_signature": "",
|
||||
"nickname": "用户9781596922326",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3795_3033762272.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154831
|
||||
},
|
||||
{
|
||||
"comment_id": "7325120948431422243",
|
||||
"create_time": 1705512643,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "红十年是明星,红一年是网红,红几天是大姨妈[我想静静][我想静静][我想静静][我想静静]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "98840301240",
|
||||
"sec_uid": "MS4wLjABAAAASxT7hez3Lip0bCg0xqu0rGJ-JXg3RiZHiGxDIukAZiw",
|
||||
"short_user_id": "962141237",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "茜茜爸",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_e0c1ccf7a57348f29ed497213abcf6df.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154934
|
||||
},
|
||||
{
|
||||
"comment_id": "7323385999815000895",
|
||||
"create_time": 1705108682,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7128686458763889956",
|
||||
"content": "这身材[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "85228800137",
|
||||
"sec_uid": "MS4wLjABAAAAUZw9T86FmSUiUnd1BYdhWtOmzAY27Nk-Isxflgr4L54",
|
||||
"short_user_id": "967824491",
|
||||
"user_unique_id": "5201314lhkm",
|
||||
"user_signature": "嘻嘻",
|
||||
"nickname": "生活能改变",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_54ed00021550f21174d9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154943
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7128686458763889956.md
Normal file
882
public/data/comments/video_id_7161000281575148800.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7161031416284267279",
|
||||
"create_time": 1667307559,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "姐姐真的不用在解释了 不要管他们了 有些都是故意说的[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "105070",
|
||||
"user_id": "58944030914",
|
||||
"sec_uid": "MS4wLjABAAAAM5RdpmLILdwssshy_auBxRDSRMUdBcY-47uk-mP8H0o",
|
||||
"short_user_id": "7627504",
|
||||
"user_unique_id": "yimona98022",
|
||||
"user_signature": "永远@ྀིི文\n@小奕不是小亦",
|
||||
"nickname": "沫.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c3a5e110a95ba71e5b12ab1df63f2dd1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "74",
|
||||
"last_modify_ts": 1711644155876
|
||||
},
|
||||
{
|
||||
"comment_id": "7161054891929928489",
|
||||
"create_time": 1667313027,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "相信她真的很难吗",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "55894",
|
||||
"user_id": "1437779794336845",
|
||||
"sec_uid": "MS4wLjABAAAANLMyFa9Z6olfVVqWUPotLwvWEE3XPXLJIahbWE0fjpdSYFUCiKNpGX-mg6ReICSE",
|
||||
"short_user_id": "2807688258",
|
||||
"user_unique_id": "ShyGuy118.",
|
||||
"user_signature": "🛹🛹",
|
||||
"nickname": "jacobb",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ea6c4c7eadc76fb2ec85de9e0bffa488.jpeg?from=2956013662",
|
||||
"sub_comment_count": "266",
|
||||
"last_modify_ts": 1711644155882
|
||||
},
|
||||
{
|
||||
"comment_id": "7161013976334631688",
|
||||
"create_time": 1667303498,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我见过一次她这么教就知道了 还是有很多杠精[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "32995",
|
||||
"user_id": "93154718162",
|
||||
"sec_uid": "MS4wLjABAAAA5GWQgWZGGWGBXGZK0RWS0wUtu1A26PWvnIGZvpcXrx4",
|
||||
"short_user_id": "1474841857",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "💚筱蕾",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f80dcf8bf8b6c3ad2502133ed5a6ba9b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "23",
|
||||
"last_modify_ts": 1711644155887
|
||||
},
|
||||
{
|
||||
"comment_id": "7161043203092284200",
|
||||
"create_time": 1667310304,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "这是一个身为模特都有的素养 也不要再强问漏脚不漏脚的 人家也只是想把好看的一面展示出来",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22265",
|
||||
"user_id": "62319347272",
|
||||
"sec_uid": "MS4wLjABAAAA7c4NeRzsFJsrv8S05ZAhRP6EEjppDJPi849HwIiF0KU",
|
||||
"short_user_id": "56577917",
|
||||
"user_unique_id": "82319347272",
|
||||
"user_signature": "",
|
||||
"nickname": "be623",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "8",
|
||||
"last_modify_ts": 1711644155984
|
||||
},
|
||||
{
|
||||
"comment_id": "7162175593143436047",
|
||||
"create_time": 1667573961,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "她没烦,我都烦死了[尬笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15453",
|
||||
"user_id": "3157393319151491",
|
||||
"sec_uid": "MS4wLjABAAAAzIbc-mr1y8rxasdTHXWGo9nRFYj4mWBAKek9iSvuEOmeu4z4aXwvObxp9YO4flkx",
|
||||
"short_user_id": "3430124943",
|
||||
"user_unique_id": "wsll66666666",
|
||||
"user_signature": "☹️",
|
||||
"nickname": "[脆脆鲨.]",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ocgeHADzlCjCdC1fhAAoLAEvAAzytskgR9I2C0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "19",
|
||||
"last_modify_ts": 1711644155998
|
||||
},
|
||||
{
|
||||
"comment_id": "7161029164727812896",
|
||||
"create_time": 1667307036,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "怎么还有人在问啊?怎么还有人在问啊?一年前就看到有人在问了[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "306531",
|
||||
"user_id": "63932147694",
|
||||
"sec_uid": "MS4wLjABAAAAmmIMzXqDLtYpQs8yczXJBy2inu0gAMLUQJ4LiBOllds",
|
||||
"short_user_id": "3959598771",
|
||||
"user_unique_id": "liulibaoxiandai",
|
||||
"user_signature": "",
|
||||
"nickname": "琉璃保鲜袋",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_09239407a422447898dfd84e19e7db86.jpeg?from=2956013662",
|
||||
"sub_comment_count": "470",
|
||||
"last_modify_ts": 1711644156008
|
||||
},
|
||||
{
|
||||
"comment_id": "7161004859575272227",
|
||||
"create_time": 1667301379,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "姐姐性格真好[流泪]要我早发毛了[流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "27987",
|
||||
"user_id": "3351729292978723",
|
||||
"sec_uid": "MS4wLjABAAAAv7dDjNr6liolfsI8GuNaiCONnJYaeOLBhpTA6PF21rAwCcHBrqvT7QBiHAoJ4uxE",
|
||||
"short_user_id": "34514341584",
|
||||
"user_unique_id": "34514341584",
|
||||
"user_signature": "平芜尽处是春山",
|
||||
"nickname": "♡⃝🐝清 ◡̈欢☁🦁️️🌈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_f15006492ac1f95239c754e218b6c316.jpeg?from=2956013662",
|
||||
"sub_comment_count": "36",
|
||||
"last_modify_ts": 1711644156020
|
||||
},
|
||||
{
|
||||
"comment_id": "7162369537407501089",
|
||||
"create_time": 1667619115,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我一开始还以为下面是跑步机,你在上面走路[流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1956",
|
||||
"user_id": "1346237848358248",
|
||||
"sec_uid": "MS4wLjABAAAATNT8o-zj5EAjQK6joaehPRmEzLjByk9KwXWNtLbB0a1NkVXCezb0yzXoe3PKB9Vl",
|
||||
"short_user_id": "28780085235",
|
||||
"user_unique_id": "28780085235",
|
||||
"user_signature": "",
|
||||
"nickname": "安安",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_542712353a9e4a74892a3a556b59ece5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "8",
|
||||
"last_modify_ts": 1711644156030
|
||||
},
|
||||
{
|
||||
"comment_id": "7161069975388570408",
|
||||
"create_time": 1667316540,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我在去年就看见这个姐姐解释,咋还有人一直问问问[尬笑][尬笑][尬笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "7070",
|
||||
"user_id": "104631437444",
|
||||
"sec_uid": "MS4wLjABAAAAU2OyUpLnK_eioK_Bc0fJWsgf-Ae8gglY_rqSTu7QsPM",
|
||||
"short_user_id": "1941261850",
|
||||
"user_unique_id": "osborn123",
|
||||
"user_signature": "",
|
||||
"nickname": "只为于深情",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oYHAaTnO8AXZ9roeA99eACBAYVqIQCAbglFiVD.jpeg?from=2956013662",
|
||||
"sub_comment_count": "21",
|
||||
"last_modify_ts": 1711644156039
|
||||
},
|
||||
{
|
||||
"comment_id": "7161053833807119135",
|
||||
"create_time": 1667312778,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "她一开始漏脚的那个可以自己用手挡一下,就会发现真的是那样[流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1995",
|
||||
"user_id": "66139679514",
|
||||
"sec_uid": "MS4wLjABAAAATlZP7NrE3_-MYENoxAhKHkyZbol-mYfMIEp1LF7tf1g",
|
||||
"short_user_id": "58443747",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "⊙﹏⊙",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oogtLAAEyAAODtB0CAfhgpzZAmAeAPAIEitFCl.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644156055
|
||||
},
|
||||
{
|
||||
"comment_id": "7162161913296028450",
|
||||
"create_time": 1667570776,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "在姐姐走全身步的时候,用手遮住姐姐的小腿,就跟平时拍视频一样啊,怎么还有人眼瞎怀疑[难过][感谢]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5127",
|
||||
"user_id": "76348391092",
|
||||
"sec_uid": "MS4wLjABAAAAuz9owhk5BKVQbamnALSL18HZLXkN6yDK4V3BJcLsZiM",
|
||||
"short_user_id": "728042206",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "星她真的…我真的…",
|
||||
"nickname": "忆熬",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_osEaM9Clve0W0fQmJFDzlgAADXAtApOA0IA7hi.jpeg?from=2956013662",
|
||||
"sub_comment_count": "7",
|
||||
"last_modify_ts": 1711644156071
|
||||
},
|
||||
{
|
||||
"comment_id": "7161031209912271630",
|
||||
"create_time": 1667307511,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我估计不知道现在有多少网红在镜子里面模仿[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1962",
|
||||
"user_id": "96639864280",
|
||||
"sec_uid": "MS4wLjABAAAAiYVX7Kh-FojId4bwr5-h9lh-Ev1e6yUYDewH-kExcME",
|
||||
"short_user_id": "919895236",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "闪婚夫妇",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_fd190006b2e95248befc.jpeg?from=2956013662",
|
||||
"sub_comment_count": "2",
|
||||
"last_modify_ts": 1711644156082
|
||||
},
|
||||
{
|
||||
"comment_id": "7161064406830826280",
|
||||
"create_time": 1667315246,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我已经看姐姐解释一年了[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22",
|
||||
"user_id": "101484650981",
|
||||
"sec_uid": "MS4wLjABAAAAHMvc1fPG-ZA_0occJRjw2rs2byJtFvvIUzVcoqUYM7I",
|
||||
"short_user_id": "1138659386",
|
||||
"user_unique_id": "sky20200802",
|
||||
"user_signature": "感谢您的关注❤️ \n小红🍠ID:273569835\n主要作品内容:1.sky·光遇。2.视频剪辑。3.抖音流行视频跟拍。4.像素画。",
|
||||
"nickname": "sky小鹿💫重生之我在广东卖叉烧",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_7f841c29923d475c8fa96a6ba3d08521.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156093
|
||||
},
|
||||
{
|
||||
"comment_id": "7161004411719385887",
|
||||
"create_time": 1667301272,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "达莎的性格真好,不仅人美 心也美[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "452",
|
||||
"user_id": "99629441723",
|
||||
"sec_uid": "MS4wLjABAAAA0HufYswyasYFVDfqgebtM0_KAIqKVSSbkx_K8vVbQYo",
|
||||
"short_user_id": "1012343288",
|
||||
"user_unique_id": "lmlmlmpic",
|
||||
"user_signature": "",
|
||||
"nickname": "Snake mode",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3adfc5f4a07b34dd50e6435e0cfa9104.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156103
|
||||
},
|
||||
{
|
||||
"comment_id": "7162412173774406400",
|
||||
"create_time": 1667629043,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "其实确实是这样,因为会不停的有新粉,攒满一批新粉解释一波,其实也没啥,更显得博主人美心善了啊,评论区恶意不用那么大",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "146",
|
||||
"user_id": "76156150609",
|
||||
"sec_uid": "MS4wLjABAAAAoYwuumf-FIAF6Xg9VYQZ8vii871O5jC248KfJYFDQ2U",
|
||||
"short_user_id": "1002332384",
|
||||
"user_unique_id": "1002332384y",
|
||||
"user_signature": "不困于心,不乱于情,不念过往,不畏将来💗",
|
||||
"nickname": "小九妮",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_97ff06ad48df42309f50f36e1d78f7fa.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156208
|
||||
},
|
||||
{
|
||||
"comment_id": "7161027089196499749",
|
||||
"create_time": 1667306550,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "看起来好简单[流泪]做起来当我没说[尬笑][尬笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "61",
|
||||
"user_id": "93168195466",
|
||||
"sec_uid": "MS4wLjABAAAAP4SLGX2QiDmbkYS_onadbCtlO595l1-wtipXYdUiS00",
|
||||
"short_user_id": "357998379",
|
||||
"user_unique_id": "Biiiiitlmzy",
|
||||
"user_signature": "不问归期",
|
||||
"nickname": "懵懵懵懵懵西柚",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_98162a92a81976e29140954d340d7f98.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156221
|
||||
},
|
||||
{
|
||||
"comment_id": "7162184868335059726",
|
||||
"create_time": 1667576124,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "第一次刷到这个姐姐她就在解释了,现在还在解释[泪奔]姐姐好难[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "24",
|
||||
"user_id": "109332157852",
|
||||
"sec_uid": "MS4wLjABAAAAMsD-lPWlXzCxjUrUrsqE258BbSKuY5bEZQR7yJg_imE",
|
||||
"short_user_id": "50369810015",
|
||||
"user_unique_id": "951823ybzz",
|
||||
"user_signature": "",
|
||||
"nickname": "赢一壶酒.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osAAAAOlCDyAA9fQResbC8q1GnaWYlINGhldug.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156232
|
||||
},
|
||||
{
|
||||
"comment_id": "7180585252707795773",
|
||||
"create_time": 1671860296,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我试了试 一脚高一脚低[泪奔][泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "36",
|
||||
"user_id": "65774328635",
|
||||
"sec_uid": "MS4wLjABAAAANNMLM8MXqQcu_8YHSQzGd2h-1BZ0NUPt7mHKAOTe_pk",
|
||||
"short_user_id": "57009302",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🍠同名MmagicC \n\n Ins:magicshen_\n你可以叫我小麦",
|
||||
"nickname": "MmagicC",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_240d000036bce89ae6c96.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156243
|
||||
},
|
||||
{
|
||||
"comment_id": "7162783590017729316",
|
||||
"create_time": 1667715519,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "姐姐为了证明自己脚下没有跑步机证明了两年[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15",
|
||||
"user_id": "3927076333946940",
|
||||
"sec_uid": "MS4wLjABAAAAqZUKa76ILTKDVfhs8xbQzyoZ4kcEgR_uG4vbJAtJIsVghAU-8VpOK4kxEjEHU8zE",
|
||||
"short_user_id": "2170377911",
|
||||
"user_unique_id": "blackpinklike1",
|
||||
"user_signature": "198帅气美丽女人",
|
||||
"nickname": "内向性感母蟑螂",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_owbSCfgkbAELEwCJAn9lJACxTDACeAAQ3kAIId.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156255
|
||||
},
|
||||
{
|
||||
"comment_id": "7161048450674901774",
|
||||
"create_time": 1667311528,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "到底谁又惹她了[尬笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "17",
|
||||
"user_id": "71877427503",
|
||||
"sec_uid": "MS4wLjABAAAA8TBTzU73NyzbKGyKqC7cN0TbBvWFOW0p-5LJGQtLals",
|
||||
"short_user_id": "91502076",
|
||||
"user_unique_id": "joycelyn0627",
|
||||
"user_signature": "心若安人世静好",
|
||||
"nickname": "是豆莎莎莎吖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4lACM9DiCqEuAf9GAGIsUSAAfANgANDLCwzhV.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156269
|
||||
},
|
||||
{
|
||||
"comment_id": "7349108272384000780",
|
||||
"create_time": 1711097617,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "达沙我美死了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "105199506044222",
|
||||
"sec_uid": "MS4wLjABAAAAFdKsDtthmSR6e4B-2rrI9ftrx6DM6iV-FWw3GOt9Wxc",
|
||||
"short_user_id": "41658725338",
|
||||
"user_unique_id": "41658725338",
|
||||
"user_signature": "",
|
||||
"nickname": "济南木地板",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMTTBAHD7EWbeeAU3AA7FIADEAEKQbn5yx7BeE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157123
|
||||
},
|
||||
{
|
||||
"comment_id": "7348072928472777535",
|
||||
"create_time": 1710856553,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "@@",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1868789613597771",
|
||||
"sec_uid": "MS4wLjABAAAAmYUpxvLjrAnpGdkpbv7-xCOeRQ3DRhVhhGlL-l6QJoNuI7su8dujPtK9Jy8R9Jc_",
|
||||
"short_user_id": "3421238896",
|
||||
"user_unique_id": "sucibakamei5",
|
||||
"user_signature": "家人:@ᶻᵃⁱ等等我⁸",
|
||||
"nickname": "梨花_",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b6cf77928d57aaac3a7c9177e834ef8d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157133
|
||||
},
|
||||
{
|
||||
"comment_id": "7347130449779262258",
|
||||
"create_time": 1710637116,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "如果我没看错的话鞋子是Dior的[送心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2079896388774451",
|
||||
"sec_uid": "MS4wLjABAAAA8s2LNwUCR0TQ2M8UED0m5cAdPz41jvNbx9BCe9uMh8QSDRjM3i_lAzbYGOHU-hJ6",
|
||||
"short_user_id": "3535686849",
|
||||
"user_unique_id": "Cindyahy124eon",
|
||||
"user_signature": "Hi new life",
|
||||
"nickname": "Ahyeon-cindy",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_osL9ECgIh5zAvCPfs5CDByn4AAbAeAAAEhHjtV.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157143
|
||||
},
|
||||
{
|
||||
"comment_id": "7344996486352487178",
|
||||
"create_time": 1710140264,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "什么音乐",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "63721985192",
|
||||
"sec_uid": "MS4wLjABAAAApwXpS6KrZaPY3Bt_vYflS7slubNAbf58Gnex74PCrjo",
|
||||
"short_user_id": "352815545",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "始于颜值 陷于才华 忠于人品",
|
||||
"nickname": "晨晨子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okMF4IAwEDneWsAAUTlAVngC1IR2CLAbgAVeD9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157153
|
||||
},
|
||||
{
|
||||
"comment_id": "7344598240018383655",
|
||||
"create_time": 1710047539,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "@0💚 @澳洲冷空气 我那时学的就是这个",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4419683939260475",
|
||||
"sec_uid": "MS4wLjABAAAAThWAJ-xK0nC80bbHtlhyNmvS0Ap0NCY6krS_OpZ4WCOedrprZc9yl17wv_J6Rveh",
|
||||
"short_user_id": "23406127911",
|
||||
"user_unique_id": "23406127911",
|
||||
"user_signature": "",
|
||||
"nickname": "𝒀𝒐𝒔𝒉𓆡",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c7780ebf7788fa449a5a4dc0cb11476f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "2",
|
||||
"last_modify_ts": 1711644157163
|
||||
},
|
||||
{
|
||||
"comment_id": "7342484782993556262",
|
||||
"create_time": 1709555461,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "@ʚ呆呆ɞ @储画 @aki [看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "864634646313949",
|
||||
"sec_uid": "MS4wLjABAAAADY-YTs1X6nA4w8RicETIKqEDWlMdBFnJdVg19XBJAss",
|
||||
"short_user_id": "95899846636",
|
||||
"user_unique_id": "95899846636",
|
||||
"user_signature": "",
|
||||
"nickname": "童年剪辑",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_owzAALkKIAhqCEpAEyAE3AAuAefWXNtMlgkzSh.jpeg?from=2956013662",
|
||||
"sub_comment_count": "2",
|
||||
"last_modify_ts": 1711644157175
|
||||
},
|
||||
{
|
||||
"comment_id": "7341689580587287311",
|
||||
"create_time": 1709370318,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我真服了 就算在跑步机上跟你们有什么关系[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4",
|
||||
"user_id": "637347895721579",
|
||||
"sec_uid": "MS4wLjABAAAAQ3YWNhrN0Prb3p5pUIGcCcjeWphul9aBZoMDXbrMhhs",
|
||||
"short_user_id": "2221650045",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "_",
|
||||
"nickname": "校霸。",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oYAN0fC1AVreqzJRIggAtIAdC5hA1ypNgACuE0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157187
|
||||
},
|
||||
{
|
||||
"comment_id": "7340645087225561919",
|
||||
"create_time": 1709127124,
|
||||
"ip_location": "甘肃",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[微笑][微笑][微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "99731726949",
|
||||
"sec_uid": "MS4wLjABAAAA7OZwPKlkNfdt5kYxk7JiIifCkUO3upQ9XtIwiuSey20",
|
||||
"short_user_id": "1022794320",
|
||||
"user_unique_id": "jwh152",
|
||||
"user_signature": "沙雕一枚~🌚",
|
||||
"nickname": "January.🌈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_8419fb37d65243d3b11e691adbf4d3a9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157199
|
||||
},
|
||||
{
|
||||
"comment_id": "7339869664769999625",
|
||||
"create_time": 1708946582,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[捂脸][捂脸][捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1750029819184279",
|
||||
"sec_uid": "MS4wLjABAAAA26ouOgTV3cc0IaHthhmUyAPOkWUnoubpVVgmHTIqYkpB4jlcmMtAZhUVHnD_q9MK",
|
||||
"short_user_id": "3541570875",
|
||||
"user_unique_id": "bxhnl521",
|
||||
"user_signature": "一个都捣死你@花点时间爱我.",
|
||||
"nickname": "反光的蒜皮贴",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oAIAUtudygOezMAIANLhABCNwA7fEJhGy3BpAD.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157213
|
||||
},
|
||||
{
|
||||
"comment_id": "7338647132097119028",
|
||||
"create_time": 1708661941,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[赞][赞][赞][赞][赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100413262160",
|
||||
"sec_uid": "MS4wLjABAAAA7JqS52a8GT21zAdQtNMdupdpzHfRJ1BzTbEhLRkzPC0",
|
||||
"short_user_id": "3511174617",
|
||||
"user_unique_id": "dyesjzlhx766",
|
||||
"user_signature": "",
|
||||
"nickname": "长江八号",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3791_5035712059.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157225
|
||||
},
|
||||
{
|
||||
"comment_id": "7338640275181404980",
|
||||
"create_time": 1708660347,
|
||||
"ip_location": "黑龙江",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "大长腿美女[抱抱你][玫瑰][爱心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "3189032431651582",
|
||||
"sec_uid": "MS4wLjABAAAAnaOcpA-08Gq4CGxF58EPiS04Y3NmC15LSHhRKAeEIlH7NV4EonN8y-SMHbCYeneE",
|
||||
"short_user_id": "79051906500",
|
||||
"user_unique_id": "79051906500",
|
||||
"user_signature": "",
|
||||
"nickname": "有缘知己",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_5a3dcde618b940a998835411d046c49d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157237
|
||||
},
|
||||
{
|
||||
"comment_id": "7338197464408720154",
|
||||
"create_time": 1708557244,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1925957687716215",
|
||||
"sec_uid": "MS4wLjABAAAAFE2DfTYoKXwWEX_uksVc8ITdFdeJLvKbwqjThzyzfxYaIUIITesZXjj-RN17p5gF",
|
||||
"short_user_id": "3571627824",
|
||||
"user_unique_id": "lcf1234567898",
|
||||
"user_signature": "",
|
||||
"nickname": "丽桐轻奢美容",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_3b33c67eecb544b99b4c7497b5997f89.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157249
|
||||
},
|
||||
{
|
||||
"comment_id": "7338058561690420020",
|
||||
"create_time": 1708524902,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[泪奔][泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1399034639556116",
|
||||
"sec_uid": "MS4wLjABAAAA9nGiDUjOFb_rekkv2nNf30z8CuRJxxSfrojbqdOt9FVA0hz5mxcvdGgjQU8WnPH0",
|
||||
"short_user_id": "78722927987",
|
||||
"user_unique_id": "xyh3085604731",
|
||||
"user_signature": "",
|
||||
"nickname": "哈密瓜🍈(^◡^)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oIAsnTfb9lDMDDAcCjnQ02eIAZx0gAWEINjAIA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157262
|
||||
},
|
||||
{
|
||||
"comment_id": "7335355941900501770",
|
||||
"create_time": 1707895649,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "学会了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3477116313667504",
|
||||
"sec_uid": "MS4wLjABAAAAfHx0yoVzQfi4cdtLUQOT_vVzk9U-QePCf4rXxStl_ARg5bRdC3CEwk8Zx-_8DUia",
|
||||
"short_user_id": "29326665209",
|
||||
"user_unique_id": "Nianniannian312",
|
||||
"user_signature": "@念念2.0💃🏻 直播晚上10:30-早上6.30温柔绝对屈服,浪漫至死不渝 。跳舞是生活,舞蹈是热爱。我不爱新鲜感,我只爱那个能坚定选择我的人。因为这世上从不缺让人心动的新鲜感,但长久的陪伴和被人坚定地选择实属难得。",
|
||||
"nickname": "念念💃🏻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oI7E34BVAM02WtZsfLtfAQGdOAhBAANNP3e8HA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157275
|
||||
},
|
||||
{
|
||||
"comment_id": "7335016967945011968",
|
||||
"create_time": 1707816726,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "就是你们知道吗[听歌]企鹅他不耐热,劳资不耐烦[九转大肠]紧到说[九转大肠]你有实力吗你质疑人家[九转大肠]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "333852968751326",
|
||||
"sec_uid": "MS4wLjABAAAAhfUtD8vc4m3sEbaOxV2KzIeHwBvv9nXX-xjOWd2_rZ0",
|
||||
"short_user_id": "3822559395",
|
||||
"user_unique_id": "ADSWDLXHYG",
|
||||
"user_signature": "家人们少关注我我每天发发疯不爱更新\n喜欢雅妹@奇妙国国🍯 最爱国国@纳方面🐾猛子永远值得@夏提雅\n小号@奇妙的脆皮炸鸡🍯\nbest卑鄙@奇妙煤球球🍯🌟",
|
||||
"nickname": "奇妙的桔奈🍯",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oIUXGAWstDAy1hIlChfNACgr72FAldEX9AzOAe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157472
|
||||
},
|
||||
{
|
||||
"comment_id": "7334160777496822538",
|
||||
"create_time": 1707617378,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "!!!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "102387345084",
|
||||
"sec_uid": "MS4wLjABAAAAFtps51kwOPQ4NEs7gzjDd011W5dRkp8voz0q_NAR3cI",
|
||||
"short_user_id": "1225425148",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "23",
|
||||
"nickname": "Xh",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMJBmbwfDAo7nuAQAALDAaEaBBfeI2AMLxSvAH.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157486
|
||||
},
|
||||
{
|
||||
"comment_id": "7333532849172693760",
|
||||
"create_time": 1707471178,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "我看见你的广告了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "94926026068",
|
||||
"sec_uid": "MS4wLjABAAAAmQlvBfX5HGm2qWfx5gUrzEhA7oIqzVzdgj0Z0Np4qys",
|
||||
"short_user_id": "595279981",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "LJE",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oULAGJWbuEfIoA47kBeQlS9AAVBlAf2FRkiPHU.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157500
|
||||
},
|
||||
{
|
||||
"comment_id": "7332804182452749075",
|
||||
"create_time": 1707301523,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "[感谢]酷",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "96158618949",
|
||||
"sec_uid": "MS4wLjABAAAAfualWZMCARql79in9TdjNajJrOj4PTvtTx11wpLr1qw",
|
||||
"short_user_id": "631136085",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "快乐多一点",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_c4617dc2c0ef44e3ad86763c17b22572.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157507
|
||||
},
|
||||
{
|
||||
"comment_id": "7332689098975609652",
|
||||
"create_time": 1707274729,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "终结的天使也有",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2555726372549790",
|
||||
"sec_uid": "MS4wLjABAAAAUn0Xz9WYs4aKQxKc0GGZ4e70YO1MtcjyL7iVA3M8E9N7O1LnfS1nqUCgMWsTJB49",
|
||||
"short_user_id": "51022457448",
|
||||
"user_unique_id": "51022457448",
|
||||
"user_signature": "",
|
||||
"nickname": "51022457448",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157513
|
||||
},
|
||||
{
|
||||
"comment_id": "7330919914981983015",
|
||||
"create_time": 1706862808,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7161000281575148800",
|
||||
"content": "@癫二 富江也是这个走路姿势[不你不想]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4180795195663003",
|
||||
"sec_uid": "MS4wLjABAAAArUuD3bDGdKPY-eg6XOd7UCYCobpm438PdMOzoYVpFdzT35JVqHBoqAPXj8KTjFie",
|
||||
"short_user_id": "74727085201",
|
||||
"user_unique_id": "74727085201",
|
||||
"user_signature": "约瑟夫弱势角色应该加强",
|
||||
"nickname": "破网易没事去修网(加强约瑟夫)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oID0EChzAlNAMI5AvlriAvYITAfaW9A4KfC4Dg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644157522
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7161000281575148800.md
Normal file
860
public/data/comments/video_id_7194815099381484860.json
Normal file
@@ -0,0 +1,860 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7194880902688916284",
|
||||
"create_time": 1675188780,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "出去玩吧 反正也赚不到钱[笑哭]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "98987",
|
||||
"user_id": "60685235913",
|
||||
"sec_uid": "MS4wLjABAAAAaSfA0HM0mHsoLdNIiwcFfUUYmmD_xGE6IEni35uxzkE",
|
||||
"short_user_id": "16478095",
|
||||
"user_unique_id": "Lsy0508",
|
||||
"user_signature": "以梦为马 不负韶华\n橱窗不打烊 直播同款好物点击橱窗\n售后问题联系@思瑶小助理(售后版) \n唯一小号:@刘大嘴很nice\n团队招新剧情编导、摄影:BBQ190621(非本人)",
|
||||
"nickname": "刘思瑶nice",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_31589976a8790e475243be1ec4e24141.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1960",
|
||||
"last_modify_ts": 1711644158497
|
||||
},
|
||||
{
|
||||
"comment_id": "7194816287665980175",
|
||||
"create_time": 1675173713,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "幸亏当初大家说你方的时候没说话[泣不成声][泣不成声][泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "185965",
|
||||
"user_id": "1477334243753614",
|
||||
"sec_uid": "MS4wLjABAAAAgz8ZD9iR4e3DyA86f4HDtZ-RqYl1jEG3Ay7QPO1fLHTLjKkDs7njzC3x7B7rlle_",
|
||||
"short_user_id": "3757816864",
|
||||
"user_unique_id": "zimuweiwei0512",
|
||||
"user_signature": "",
|
||||
"nickname": "子木卫卫",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4fH4ArlbAsmA0GAhOCeB9wCN2vtIcFAAg2gEz.jpeg?from=2956013662",
|
||||
"sub_comment_count": "571",
|
||||
"last_modify_ts": 1711644158505
|
||||
},
|
||||
{
|
||||
"comment_id": "7194857740967478049",
|
||||
"create_time": 1675183379,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "发生啥了到底转变这么快评论区",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10644",
|
||||
"user_id": "3364936811809303",
|
||||
"sec_uid": "MS4wLjABAAAAZ1z5WULe1F3qgw7rEh2RR6wr2Vg-HvISDwX4IPkSTKpZT1XMlSqKa8PvFAMSPZi2",
|
||||
"short_user_id": "55321083385",
|
||||
"user_unique_id": "XxX_npc",
|
||||
"user_signature": "@xxx.💕",
|
||||
"nickname": "XxX.💕",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o8EzIAAA9oTeAhzlmfD1Nrbd7DCAMhAgDqdZCN.jpeg?from=2956013662",
|
||||
"sub_comment_count": "83",
|
||||
"last_modify_ts": 1711644158519
|
||||
},
|
||||
{
|
||||
"comment_id": "7194862288515302144",
|
||||
"create_time": 1675184442,
|
||||
"ip_location": "甘肃",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "你们都在搜什么[看]刘思瑶给小杨哥表白",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45110",
|
||||
"user_id": "52313442036",
|
||||
"sec_uid": "MS4wLjABAAAA1R6fuHnQox89wkPI9WwDI9ObeLYq-IcIXfo4K_smghk",
|
||||
"short_user_id": "371447710",
|
||||
"user_unique_id": "DSN777",
|
||||
"user_signature": "如果志同道合 希望你我旗鼓相当\n理想型:@03的林 \n永远的神:@6.10",
|
||||
"nickname": "吃零食的一年",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ogIWEMerA6NKON01AAnAISdF9elgZCBAAWDHbC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "93",
|
||||
"last_modify_ts": 1711644158613
|
||||
},
|
||||
{
|
||||
"comment_id": "7195126762706420491",
|
||||
"create_time": 1675246001,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "好久没刷到,怎么又变成全是维护她的了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "8154",
|
||||
"user_id": "108433099998",
|
||||
"sec_uid": "MS4wLjABAAAAj4hm0YLqDX5vC-eojmRHgVRhKezTDoiaYVQc25eu4Bw",
|
||||
"short_user_id": "1808435710",
|
||||
"user_unique_id": "Iamqq726",
|
||||
"user_signature": "好人一生平安!",
|
||||
"nickname": "我选B",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osDDmZhrE3PADAxCeEOnbAd9azAeAAGgAcBlIY.jpeg?from=2956013662",
|
||||
"sub_comment_count": "166",
|
||||
"last_modify_ts": 1711644158629
|
||||
},
|
||||
{
|
||||
"comment_id": "7194979709733536544",
|
||||
"create_time": 1675211768,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "人家随时拍照是绝美\n我拍照以后p了是这样",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5330",
|
||||
"user_id": "510593517761726",
|
||||
"sec_uid": "MS4wLjABAAAAPVj4mWDUsnjqhOtgBUtjxY3Se2uwpLSSzk5GQ9kGGmY",
|
||||
"short_user_id": "42976647684",
|
||||
"user_unique_id": "42976647684",
|
||||
"user_signature": "🍄我是阿萱 一个爱看剧的小阔爱\n🍄爱生活,爱分享\n🍄感谢抖音大大提供这么好的绿色平台🙏",
|
||||
"nickname": "阿萱爱追剧",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_cbb6fe4a0285484bba8f2f3405ec17cc.jpeg?from=2956013662",
|
||||
"sub_comment_count": "627",
|
||||
"last_modify_ts": 1711644158644
|
||||
},
|
||||
{
|
||||
"comment_id": "7194816494629749508",
|
||||
"create_time": 1675173760,
|
||||
"ip_location": "日本",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "好新颖的拍摄方法!!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "45765",
|
||||
"user_id": "93572366087",
|
||||
"sec_uid": "MS4wLjABAAAAAX8M6kazS4-E-1SjygkcFYRHkLtT6OMRZCTD9SdY4h0",
|
||||
"short_user_id": "373980466",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "战斗 爽!\nQ:2145767025约稿或其他注明来意才给通过\n没回就是被系统吞了再加一次就好了",
|
||||
"nickname": "小島柚子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_525f85f7f53a5eb0446288840cd2dbe1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1533",
|
||||
"last_modify_ts": 1711644158659
|
||||
},
|
||||
{
|
||||
"comment_id": "7195437457998267197",
|
||||
"create_time": 1675318344,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "以前网友:俄罗斯方块[尬笑]\n现在网友:幸好当时我维护了你[来看我]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1242",
|
||||
"user_id": "76175705026",
|
||||
"sec_uid": "MS4wLjABAAAACR2jvZVoYyTtClSQYza6DQxbwlIwBoy5Tl5QvDnDT3w",
|
||||
"short_user_id": "172078297",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🌹宝藏女孩一枚👧\n\n❤️感恩生命里所有的遇见\n❤️每日更新实用好物",
|
||||
"nickname": "小新卖蜡笔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7c8bf6841d1eb0aa042acc550963b288.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644158675
|
||||
},
|
||||
{
|
||||
"comment_id": "7194815860006683430",
|
||||
"create_time": 1675173613,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "到我了,很多人说她方块,可是我觉得很好看啊[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2058",
|
||||
"user_id": "1676112111350375",
|
||||
"sec_uid": "MS4wLjABAAAAf195Ze4KKdGZ6qy8T1Oh66v9QnCceX0imK-5Nz9dxfGzlBxYFLQy_UVy0Lll8pS-",
|
||||
"short_user_id": "77316162213",
|
||||
"user_unique_id": "77316162213",
|
||||
"user_signature": "风物长宜放眼量",
|
||||
"nickname": "半个东契奇📸",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oIJHnbBEADpDQkoFKAlgeC6fIN96AA5EAATA89.jpeg?from=2956013662",
|
||||
"sub_comment_count": "33",
|
||||
"last_modify_ts": 1711644158691
|
||||
},
|
||||
{
|
||||
"comment_id": "7194840974542734112",
|
||||
"create_time": 1675179463,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "我有预感,这是下一个火的热点[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "14461",
|
||||
"user_id": "93357064647",
|
||||
"sec_uid": "MS4wLjABAAAAJ0uGzY_VspqvXcYorP2HVRo17lw_C-CD4fJRRJX6eAA",
|
||||
"short_user_id": "364183987",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "狗狗正牌男友",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_42a0fecf41b4c2a08d98734643a57dca.jpeg?from=2956013662",
|
||||
"sub_comment_count": "73",
|
||||
"last_modify_ts": 1711644158707
|
||||
},
|
||||
{
|
||||
"comment_id": "7194815687881507636",
|
||||
"create_time": 1675173575,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "你是会转场的[舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4989",
|
||||
"user_id": "104927581115",
|
||||
"sec_uid": "MS4wLjABAAAAJizacmyutyGwkh8jEI-55PZ1RoPmG6BDr0-X5lgbhYk",
|
||||
"short_user_id": "1561720857",
|
||||
"user_unique_id": "M0303017",
|
||||
"user_signature": "",
|
||||
"nickname": "救赎.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c9124d9fdad7bfde662bdd6cc8e56abf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "39",
|
||||
"last_modify_ts": 1711644158724
|
||||
},
|
||||
{
|
||||
"comment_id": "7194818613366178595",
|
||||
"create_time": 1675174255,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "信吗 明天就有人翻拍了[猪头]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2483",
|
||||
"user_id": "110779752587",
|
||||
"sec_uid": "MS4wLjABAAAAc4qTz4TYek2JoNTAI1PNhgzvbqZzHD6tyjSSuTySlfo",
|
||||
"short_user_id": "2833619760",
|
||||
"user_unique_id": "ZXLLIKELFL",
|
||||
"user_signature": "",
|
||||
"nickname": "听明月诉苦",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4qLEuaADereOGpAfAVIrExA7amFnBAVBbwQGa.jpeg?from=2956013662",
|
||||
"sub_comment_count": "63",
|
||||
"last_modify_ts": 1711644158740
|
||||
},
|
||||
{
|
||||
"comment_id": "7195084117880832826",
|
||||
"create_time": 1675236080,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "这一刻,她真的长得好像鞠婧祎[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "253",
|
||||
"user_id": "2427363828186152",
|
||||
"sec_uid": "MS4wLjABAAAAnfnr2XwYWpo6bI7iy9RzxEJFGPJ0iUsv-Dg4T296arFYsWrv4rBor0EzhoihHlpA",
|
||||
"short_user_id": "3957421221",
|
||||
"user_unique_id": "dongdong9618",
|
||||
"user_signature": "拍照胜过吃饭",
|
||||
"nickname": "秋日晚风吹",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o8lHEC4DozA9QXABASfIAeyAAAKgkC4mI3NFyh.jpeg?from=2956013662",
|
||||
"sub_comment_count": "11",
|
||||
"last_modify_ts": 1711644158757
|
||||
},
|
||||
{
|
||||
"comment_id": "7195013241042666279",
|
||||
"create_time": 1675219575,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "尊贵的库里南车主[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "93",
|
||||
"user_id": "2000757244824980",
|
||||
"sec_uid": "MS4wLjABAAAAqF3w2EJwDdZkaQOmGH7GUwauqVnwzV15jHffz_DlNTPiLRmLTt4qEbc74nYqyrwK",
|
||||
"short_user_id": "3844644899",
|
||||
"user_unique_id": "laoji1990",
|
||||
"user_signature": "豪车毒&老纪蚝宅创始人&人尽皆知MCN\n企业家联盟创始人\n不光卖车,带着老板们搞流量,也是服务。\n关注老纪,有信必复!",
|
||||
"nickname": "服务者·老纪",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3f68b62231b479ffda4831ff761ebd80.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644158773
|
||||
},
|
||||
{
|
||||
"comment_id": "7194978658422457146",
|
||||
"create_time": 1675211523,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "姐,胡歌结婚了,咱俩啥时候结婚啊?[委屈][送心][送心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "704",
|
||||
"user_id": "102004334254",
|
||||
"sec_uid": "MS4wLjABAAAAKPY3e6v4c_JVmafu5BprYAjqjs5f3x4bTvWVh-k_z7U",
|
||||
"short_user_id": "1193829727",
|
||||
"user_unique_id": "jpx562472",
|
||||
"user_signature": "🎉Let life be beautiful like summer flowers and death like autumn leaves.🎀",
|
||||
"nickname": "O.o🐽",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e9e1d7b6dc709e8021b880afde3bd451.jpeg?from=2956013662",
|
||||
"sub_comment_count": "28",
|
||||
"last_modify_ts": 1711644158790
|
||||
},
|
||||
{
|
||||
"comment_id": "7265998283067278119",
|
||||
"create_time": 1691747077,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "真的觉得她很漂亮,但为什么就搞了《撒野》那一出啊,每次刷她视频内心都很挣扎啊[泪奔][泪奔][泪奔]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "86",
|
||||
"user_id": "676914941136536",
|
||||
"sec_uid": "MS4wLjABAAAAL8TNyvbggUD5VBWs3u3rwTbSH8icvwd4Iz1ImAsfTqg",
|
||||
"short_user_id": "69695477772",
|
||||
"user_unique_id": "69695477772",
|
||||
"user_signature": "",
|
||||
"nickname": "九.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_09e91b1912a84151982d75f685da25a3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "6",
|
||||
"last_modify_ts": 1711644158805
|
||||
},
|
||||
{
|
||||
"comment_id": "7194816339613254458",
|
||||
"create_time": 1675173727,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "咱能不能火就靠你了,刘思瑶[不失礼貌的微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "125",
|
||||
"user_id": "1666466546197543",
|
||||
"sec_uid": "MS4wLjABAAAAbkVipAnFbi43cS18Kjyxe59nD6o8tOSRObKzcq1cj2A8fevtiutyi9f5d1jwdVvC",
|
||||
"short_user_id": "2365899031",
|
||||
"user_unique_id": "heitao54251",
|
||||
"user_signature": "",
|
||||
"nickname": "黑桃♠️",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_8345037f84c1441b9fd295990af7be48.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644158821
|
||||
},
|
||||
{
|
||||
"comment_id": "7194986961126736677",
|
||||
"create_time": 1675213455,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "撒野[尬笑][尬笑][尬笑]别一天看点两个男的耍朋友耍魔怔了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "126",
|
||||
"user_id": "4292954485166589",
|
||||
"sec_uid": "MS4wLjABAAAANu9utzoTFtPagLtjJ2v2-SP8-SiqYeZhpyMUgcipAzSyuKzUJ004VM8-ww7WU7dt",
|
||||
"short_user_id": "28520312410",
|
||||
"user_unique_id": "28520312410",
|
||||
"user_signature": "曾经苍海难为水,除却巫山不是云。",
|
||||
"nickname": "姜小隃",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_og7mE1fhAJDcbV6QAAzAIvqGegygVCBAAChzNO.jpeg?from=2956013662",
|
||||
"sub_comment_count": "22",
|
||||
"last_modify_ts": 1711644158838
|
||||
},
|
||||
{
|
||||
"comment_id": "7194815414588277508",
|
||||
"create_time": 1675173508,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "30",
|
||||
"user_id": "2467741423640627",
|
||||
"sec_uid": "MS4wLjABAAAAQn83U8bPrau06ejlnoCB1z2UQYjJOt1fxIpuTYqPrTiF35DBUKwalLnHV-k-uiNy",
|
||||
"short_user_id": "30129038703",
|
||||
"user_unique_id": "Love.0729.",
|
||||
"user_signature": "知足且上进,温柔而坚定",
|
||||
"nickname": "我再睡会",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e091593807895f2b9b5e1ceb2734fb6c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644158854
|
||||
},
|
||||
{
|
||||
"comment_id": "7221490752555451171",
|
||||
"create_time": 1681384352,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "闺蜜拍的我 绝交了[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "249",
|
||||
"user_id": "71384792993",
|
||||
"sec_uid": "MS4wLjABAAAA9K9CkPaQCvRtnf1q0Tp-IekaK3tbNHH31hc6jl2mFJw",
|
||||
"short_user_id": "88345797",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "就是说很会挖宝的一女的\n感谢抖音平台 我爱抖音🤘🤘🤘",
|
||||
"nickname": "百事可乐🐻⁵¹¹",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ce49ed170c1aff5280ccb4cca811430d.jpeg?from=2956013662",
|
||||
"sub_comment_count": "16",
|
||||
"last_modify_ts": 1711644159822
|
||||
},
|
||||
{
|
||||
"comment_id": "7350216413996991243",
|
||||
"create_time": 1711355624,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "去吧去吧",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "451274709408362",
|
||||
"sec_uid": "MS4wLjABAAAAnwHMf8hGiUr_SvdXXz1yzxCbQJmv59E2NvtK4H24_AM",
|
||||
"short_user_id": "24891519907",
|
||||
"user_unique_id": "24891519907",
|
||||
"user_signature": "分享美好,如有侵权,联系删除,祝你天天开心,感谢关注。",
|
||||
"nickname": "好像是妹妹",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_og3Anbr3ADMNge94yAmg8CHEQK9TAAugAAfA5w.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159835
|
||||
},
|
||||
{
|
||||
"comment_id": "7350194470472106764",
|
||||
"create_time": 1711350514,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "66",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101246495568",
|
||||
"sec_uid": "MS4wLjABAAAA6wbMxxUeHcbxGkmt4RYPvJEutZQz2UM6ZrKktwR-ODc",
|
||||
"short_user_id": "1462089538",
|
||||
"user_unique_id": "lukqak88",
|
||||
"user_signature": "谢谢点赞谢谢关注\n谢谢你们的支持\n感谢抖音平台",
|
||||
"nickname": "...B....ᰔᩚ....A....",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_a6f3e7d6697743f5ae1e740799d54935.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159860
|
||||
},
|
||||
{
|
||||
"comment_id": "7349929808312877876",
|
||||
"create_time": 1711288891,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "还有一个人是谁?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "65116678226",
|
||||
"sec_uid": "MS4wLjABAAAA6Y8pY-WCirUAOUDJ1Vs-L7kKS8Gc-xdhPvfbv8bJ7EA",
|
||||
"short_user_id": "54365974",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "知止而后定",
|
||||
"nickname": "冰岛凤梨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o8kADKTZkCtIdAe9QAZQAchAAyAOgebGE7vnDK.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159892
|
||||
},
|
||||
{
|
||||
"comment_id": "7349916802446918410",
|
||||
"create_time": 1711285863,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "找个人聊天急",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3847922480066420",
|
||||
"sec_uid": "MS4wLjABAAAAptNF4dlFn0aEVChxXjQ5boSTKSjH_5XJACLsMibX5V9qfI6X8a7euOLtwDnMD6Rj",
|
||||
"short_user_id": "2848165444",
|
||||
"user_unique_id": "nsng11",
|
||||
"user_signature": "谢谢大家关注",
|
||||
"nickname": "菲菲菲菲",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMEcIAAAeSTjAPzyQfAbtVptQSLA5hAgD9iXC3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159922
|
||||
},
|
||||
{
|
||||
"comment_id": "7349744726616081206",
|
||||
"create_time": 1711245800,
|
||||
"ip_location": "内蒙古",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "[666][666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3060653729253484",
|
||||
"sec_uid": "MS4wLjABAAAAyQHrgvNtmXIh6HV5G-hFouv6uhUJm_jun3rkGhda5SJDgXYBvOtmOWVIDRZC-1LW",
|
||||
"short_user_id": "3847870030",
|
||||
"user_unique_id": "cy54321...",
|
||||
"user_signature": "传唱草原歌曲",
|
||||
"nickname": "破锣姐",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oY4h9ZknlENAAAAKkC4eVDODIfnAlxAIcgb65Y.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159948
|
||||
},
|
||||
{
|
||||
"comment_id": "7349479576815452978",
|
||||
"create_time": 1711184066,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1028790409762675",
|
||||
"sec_uid": "MS4wLjABAAAAmM5RxlBpMoJ2-0xBKDi2L5c62EkSlFxJFatVtnCjw898ityO3BZTuoZWU2xCADC_",
|
||||
"short_user_id": "3713907585",
|
||||
"user_unique_id": "wusuowei377177",
|
||||
"user_signature": "",
|
||||
"nickname": "&无所谓&",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_6b9f54a107754e7b9a71492df1d84139.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644159976
|
||||
},
|
||||
{
|
||||
"comment_id": "7349478715577697059",
|
||||
"create_time": 1711183865,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3908131645562583",
|
||||
"sec_uid": "MS4wLjABAAAAVgz2n5pJ19NgS34-_Q_BRU8HHxMGlZJ4cl92fKMcbhuD_iCOLJ05Q-4FAy7QfORP",
|
||||
"short_user_id": "68164065942",
|
||||
"user_unique_id": "68164065942",
|
||||
"user_signature": "",
|
||||
"nickname": "Dorian",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3791_5070639578.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160003
|
||||
},
|
||||
{
|
||||
"comment_id": "7349381115172143882",
|
||||
"create_time": 1711161141,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "家道中落富二代",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "92315073849",
|
||||
"sec_uid": "MS4wLjABAAAAn7qkBp1jzzBil4ZaPP3Edv06P7pqL96BEY0zXtrd674",
|
||||
"short_user_id": "3780607458",
|
||||
"user_unique_id": "20040426LC",
|
||||
"user_signature": "爱何玺爸爸",
|
||||
"nickname": "路蓓蕾",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oIDDcpdMIfYANfZCAIsnbAk9JlA8AAFgAvglQy.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160028
|
||||
},
|
||||
{
|
||||
"comment_id": "7349378999607034675",
|
||||
"create_time": 1711160648,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "@瑜有有 这个能拍吗",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2632700536045129",
|
||||
"sec_uid": "MS4wLjABAAAAZwuSeVTJJrPYQ9eEU0spkzRHQxfkz6TYfKI3Yp9EhwQLQyb3LQYzNppvSVwBPkcT",
|
||||
"short_user_id": "36896811712",
|
||||
"user_unique_id": "36896811712",
|
||||
"user_signature": "用瑕疵 做我们🫶\n只分享买到的好东西!",
|
||||
"nickname": "大鱼呀",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_6832979dd71689355feb0c3775c0eaa0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644160055
|
||||
},
|
||||
{
|
||||
"comment_id": "7349120384807633702",
|
||||
"create_time": 1711100434,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "不错",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1376216823638227",
|
||||
"sec_uid": "MS4wLjABAAAAthYeVotigAVRzJpb_bJggW-aGKlqEdPvJFWMmQlNBgrw87XWYQpA5GTAa_v9NOji",
|
||||
"short_user_id": "2207838662",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "吃货欢乐多,享受美一刻、大王叫我来满足你的胃、让嘴巴去旅行、想吃的错不了,想买的贵不了",
|
||||
"nickname": "尝千味零食店",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_3040680213fc48258d58cff301065558.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160081
|
||||
},
|
||||
{
|
||||
"comment_id": "7347506790627033908",
|
||||
"create_time": 1710724743,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "@香芋椰椰 @十三椿. 拍呗",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "96611499369",
|
||||
"sec_uid": "MS4wLjABAAAAN1pmr0wG8Zckg4zgsgHgnGTtBbboUnflwg4UxqoHyZ8",
|
||||
"short_user_id": "37649151532",
|
||||
"user_unique_id": "37649151532",
|
||||
"user_signature": "",
|
||||
"nickname": "🍚",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7d2838136f104b4be650eb9656e8edb9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644160099
|
||||
},
|
||||
{
|
||||
"comment_id": "7347123745783448358",
|
||||
"create_time": 1710635555,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "这种视频怎么拍?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "609573154078490",
|
||||
"sec_uid": "MS4wLjABAAAAtu6Sjx0EBNzievtmFHwH0u7RKI05jIOGLp5_wbsKY9c",
|
||||
"short_user_id": "82791124687",
|
||||
"user_unique_id": "82791124687",
|
||||
"user_signature": "",
|
||||
"nickname": "我是你爹",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2607b34c8e759581b6ca385e7e013278.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160118
|
||||
},
|
||||
{
|
||||
"comment_id": "7347028998964232995",
|
||||
"create_time": 1710613509,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "94248544344",
|
||||
"sec_uid": "MS4wLjABAAAAHhdfYw9AHg8GjDEpH7YPw5SCITVgdlvQ3qEo0G9iqRQ",
|
||||
"short_user_id": "1083509046",
|
||||
"user_unique_id": "cxk.wife520",
|
||||
"user_signature": "未曾谋面的也终将会相遇\n@蔡徐坤\n陪伴是最长情的告白\n@庞博文",
|
||||
"nickname": "ppbw.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o0pRInC9AATY0DzNAAgfqe0oENCIlihCKAWMzA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160136
|
||||
},
|
||||
{
|
||||
"comment_id": "7346607753194898187",
|
||||
"create_time": 1710515418,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "漂亮",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2163486438205864",
|
||||
"sec_uid": "MS4wLjABAAAAbXQdCyAu9_IKYu0FX6fqmygpNiP48M0PoSQqo_MQn7Ptmo77tqmtoeLsRwhwTedF",
|
||||
"short_user_id": "96032167738",
|
||||
"user_unique_id": "96032167738",
|
||||
"user_signature": "Hello,我是梦幻紫海 谢谢大家的评论与关注",
|
||||
"nickname": "梦幻紫海",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_9db6919d2911466880182e00c91a48ff.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160155
|
||||
},
|
||||
{
|
||||
"comment_id": "7346510296343872296",
|
||||
"create_time": 1710492727,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "[灵机一动][灵机一动][灵机一动]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101543531014",
|
||||
"sec_uid": "MS4wLjABAAAALNa-Rp8IXugDiaj2GqX_iAqzvIbP8iJwgBhgu5GtnH0",
|
||||
"short_user_id": "1143278846",
|
||||
"user_unique_id": "LFSY18820674333",
|
||||
"user_signature": "湛江东洸水产有限公司创立于2008年,现发展为虾苗孵化、对虾养殖、水产品收购加工、批发销售为一体的综合性水产企业。公司占地面积35亩,拥有现代化标准厂房8000多平方米、综合楼6000多平方米,其中有可容纳2200吨的三个大型冷库、大型生产车间、制冷车间。配备有三台先进的大型双螺旋单冻机,速冻间3间。",
|
||||
"nickname": "乐丰供应链",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oQZAffARy8xfAA3ZevzfixpCfCAesCcYfAAg770.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160177
|
||||
},
|
||||
{
|
||||
"comment_id": "7346249088068240168",
|
||||
"create_time": 1710431914,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "像鞠静怡",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100837888005",
|
||||
"sec_uid": "MS4wLjABAAAAaIz0ylZbyJxJRDTUrsAYjNGV7j9AoAVvZK1zTkZ3Y9E",
|
||||
"short_user_id": "1184163881",
|
||||
"user_unique_id": "M01305858",
|
||||
"user_signature": "缘分是最美的遇见🍀",
|
||||
"nickname": "小m",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_bfb8a0e4e9e6022fe9c36a0d9a2adee0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644160205
|
||||
},
|
||||
{
|
||||
"comment_id": "7346243212950962983",
|
||||
"create_time": 1710430543,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "1983139093167271",
|
||||
"sec_uid": "MS4wLjABAAAAvtkxoSLmC6OzYP118a21TsEmlrPH4sArNNn-QPFVAJzaaZBacoAlOYfX79rkQgBm",
|
||||
"short_user_id": "2814414934",
|
||||
"user_unique_id": "BaoFa2024",
|
||||
"user_signature": "读文Ⅱ情感聊愈Ⅱ音乐\n为爱点歌:祝福、告白、生日、挽回、告别等\n(私)",
|
||||
"nickname": "吴龘龘ᴰᵃᴰᵃ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oYdCDACzyCoLFkVfhAAdIAEJAAHDNwDgteIUCg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160235
|
||||
},
|
||||
{
|
||||
"comment_id": "7346068728087675675",
|
||||
"create_time": 1710389914,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "@曾天天🌻 长得有点像",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3406755534220480",
|
||||
"sec_uid": "MS4wLjABAAAAznicHcxKq-XN2Kf5ccecdan5b2hVHcnwsVOfUruodAq3W4HPVYZPWoyD-I10ng4V",
|
||||
"short_user_id": "23999140952",
|
||||
"user_unique_id": "23999140952",
|
||||
"user_signature": "愿时光清浅,许你晴天。",
|
||||
"nickname": "雨露均沾",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-image-file_1a2bade7996541d271a817bd14718851.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160266
|
||||
},
|
||||
{
|
||||
"comment_id": "7345836917403599625",
|
||||
"create_time": 1710335941,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7194815099381484860",
|
||||
"content": "姐妹挺你[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "109439237036",
|
||||
"sec_uid": "MS4wLjABAAAAaHjAEhEl8bhwvDcXbWg9MbsnjLUv5N4Yvd9Rg6gWi1M",
|
||||
"short_user_id": "3446648760",
|
||||
"user_unique_id": "dyhugtm8gm3q",
|
||||
"user_signature": "",
|
||||
"nickname": "王小二",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_039dd502a5db4f92a12ec342f37f66e0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644160297
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7194815099381484860.md
Normal file
882
public/data/comments/video_id_7260749400622894336.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7260795722059219731",
|
||||
"create_time": 1690535751,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "突然觉得自己好暗淡",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "19649",
|
||||
"user_id": "64406208532",
|
||||
"sec_uid": "MS4wLjABAAAA6Cr9S0X3sVK0yRmeax0E96u9t2h0dr5OIphDaQ0VG-I",
|
||||
"short_user_id": "50237745",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "祈尔繁芜胜常春",
|
||||
"nickname": "今天没烦恼",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ee6d6c8a408bdd51bc82faf87d03b490.jpeg?from=2956013662",
|
||||
"sub_comment_count": "536",
|
||||
"last_modify_ts": 1711644153801
|
||||
},
|
||||
{
|
||||
"comment_id": "7260751233685947151",
|
||||
"create_time": 1690525398,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "一只顾还没来 是真的把他删了吗[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15683",
|
||||
"user_id": "53603940222",
|
||||
"sec_uid": "MS4wLjABAAAAKJGzJMkRcgDSZKFvXknM1hPyNObsIHO-Sg6MUDiZDRs",
|
||||
"short_user_id": "39037596",
|
||||
"user_unique_id": "Li.Sillage3",
|
||||
"user_signature": "4",
|
||||
"nickname": "bi8boom",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_54ad22836b4046419994680cfd1edc57.jpeg?from=2956013662",
|
||||
"sub_comment_count": "43",
|
||||
"last_modify_ts": 1711644153804
|
||||
},
|
||||
{
|
||||
"comment_id": "7260755641752814371",
|
||||
"create_time": 1690526426,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "不开玩笑这个真的是我这辈子见过的最漂亮的女生[流泪]在我的审美里没人能超越了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22531",
|
||||
"user_id": "83557757626",
|
||||
"sec_uid": "MS4wLjABAAAA8oJyVXx7jpgg9VVJRggRhiLfwuGN9gweW42X_aZzKX0",
|
||||
"short_user_id": "701354412",
|
||||
"user_unique_id": "zps061103",
|
||||
"user_signature": "",
|
||||
"nickname": "z ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_629446ce44d1ef387f7bbc747028762c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "395",
|
||||
"last_modify_ts": 1711644153808
|
||||
},
|
||||
{
|
||||
"comment_id": "7260894416331195192",
|
||||
"create_time": 1690558733,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "衣服realisationpar 她家裙子穿上真的超好看!!!!!!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2313",
|
||||
"user_id": "98615640305",
|
||||
"sec_uid": "MS4wLjABAAAAFZBic9DLU1WvBXjby2vHi-GbTH8CjrJcjdw3pG5M8GM",
|
||||
"short_user_id": "947779382",
|
||||
"user_unique_id": "Laopeiya414",
|
||||
"user_signature": "走不出自己的执念,哪里都是牢笼。",
|
||||
"nickname": "落子无悔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_bd3ea300ca8bed0412c9b94dddd8f971.jpeg?from=2956013662",
|
||||
"sub_comment_count": "125",
|
||||
"last_modify_ts": 1711644153812
|
||||
},
|
||||
{
|
||||
"comment_id": "7349174290732729142",
|
||||
"create_time": 1711112983,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "自在很少,飘浮却是常态!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "11",
|
||||
"user_id": "71305377091",
|
||||
"sec_uid": "MS4wLjABAAAARkiGjhKEEF6mEjon9RezTndaBJXwKMoV0cz01HzPwXs",
|
||||
"short_user_id": "2237019946",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "我生之年我最爱,音乐历史不分开",
|
||||
"nickname": "我为歌狂三十年",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_be5f5f109d5d4fdeac92ac2195bed9c7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153817
|
||||
},
|
||||
{
|
||||
"comment_id": "7260874192877847331",
|
||||
"create_time": 1690554018,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "自由穿搭,不被束缚的漂亮",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1806",
|
||||
"user_id": "92591000757",
|
||||
"sec_uid": "MS4wLjABAAAA3KmxHLfqvQ96JbwA3nGfG45RjUb_URU-G4BXnrDUcxs",
|
||||
"short_user_id": "1086853838",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "珍惜才配拥有",
|
||||
"nickname": "一碗云朵",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3b7550369d4c46a15c14d1b3f7209e5b.jpeg?from=2956013662",
|
||||
"sub_comment_count": "64",
|
||||
"last_modify_ts": 1711644153821
|
||||
},
|
||||
{
|
||||
"comment_id": "7260789766450840377",
|
||||
"create_time": 1690534372,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "香秀的状态和文案,我觉得她心里是有爱的人的,但肯定不是一只顾,是爱而不得一个人。。。[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2066",
|
||||
"user_id": "818496645372148",
|
||||
"sec_uid": "MS4wLjABAAAAIIBZfId5QyxLrOvUUZxc5gsOHzY0m_oJrfU4X5D-9WY",
|
||||
"short_user_id": "71910041643",
|
||||
"user_unique_id": "71910041643",
|
||||
"user_signature": "",
|
||||
"nickname": "71910041643y",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "50",
|
||||
"last_modify_ts": 1711644153825
|
||||
},
|
||||
{
|
||||
"comment_id": "7260767049110029115",
|
||||
"create_time": 1690529080,
|
||||
"ip_location": "黑龙江",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "裙子同款啊,穿着同款裙子的我此时此刻刷到了我的老乡大美女香秀![舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1488",
|
||||
"user_id": "62217900997",
|
||||
"sec_uid": "MS4wLjABAAAALtQf_kfzSsZ5u53YT9FxhjbNUi1FOkkSwhlJke5fKlc",
|
||||
"short_user_id": "27013966",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "哈哈哈",
|
||||
"nickname": "小果子吃草莓",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_3937e9daaa9d7f5552a55a55476f23a5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "155",
|
||||
"last_modify_ts": 1711644153829
|
||||
},
|
||||
{
|
||||
"comment_id": "7260757515632280375",
|
||||
"create_time": 1690526855,
|
||||
"ip_location": "天津",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "婆婆在新就想看",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4082",
|
||||
"user_id": "69614871004",
|
||||
"sec_uid": "MS4wLjABAAAAzROiPtTGUEIBrA0f57ua0-qMit-OmezwvW4Ou8GUNyk",
|
||||
"short_user_id": "77096308",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "随缘更新香秀日常",
|
||||
"nickname": "一只顾",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_95ea51b8b9774ae5ab018c5c0e779c63.jpeg?from=2956013662",
|
||||
"sub_comment_count": "72",
|
||||
"last_modify_ts": 1711644153833
|
||||
},
|
||||
{
|
||||
"comment_id": "7349509075758269225",
|
||||
"create_time": 1711190933,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "弱弱地问一句:一只顾真的是香秀的弟弟吗[裂开][裂开][泣不成声][泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "96333856593",
|
||||
"sec_uid": "MS4wLjABAAAAEWzhNrak3b6qkg221dNtLPascm-R2VJJ1Utk8-AGFKI",
|
||||
"short_user_id": "2371649217",
|
||||
"user_unique_id": "v1010012792",
|
||||
"user_signature": "🌹美好事物分享给爱生活的你 \n🌈目光所及皆是美好\n🌈每日好物更新,下方橱窗好物多多👇👇👇,❤️喜欢的可以带走,🌸🌸所有售后问题可联系客服哦🌸🌸🌸",
|
||||
"nickname": "心里有糖❤️",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2dc8100015880d6ad5110.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153838
|
||||
},
|
||||
{
|
||||
"comment_id": "7260749916228780835",
|
||||
"create_time": 1690525086,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "你给我删了奥,一只顾来了奥",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1017",
|
||||
"user_id": "3438870508870103",
|
||||
"sec_uid": "MS4wLjABAAAALWUA_yQ_N-Q-AsXNQlzlcImg9U1Dp84Y_mFV-o7eWouTdn1-MC9XbcdPWPEblVJN",
|
||||
"short_user_id": "3457645744",
|
||||
"user_unique_id": "zhangxinze48",
|
||||
"user_signature": "搬砖兄弟:@庞博文\n搬砖兄弟:@混过社会 \n搬砖兄弟:@刘佳梁\n搬砖兄弟:@韩汶栩",
|
||||
"nickname": "河南牢弟",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_9578d0b070c34e95af07242d34bc702f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644153842
|
||||
},
|
||||
{
|
||||
"comment_id": "7346554753729889033",
|
||||
"create_time": 1710503075,
|
||||
"ip_location": "吉林",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "真有种女朋友的感觉,太像我前女友了[我想静静]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "10",
|
||||
"user_id": "866833568120644",
|
||||
"sec_uid": "MS4wLjABAAAADfF21oACFP79M--phO9Jw6KQbuLMwS23il-oUOzU6xg",
|
||||
"short_user_id": "83875913895",
|
||||
"user_unique_id": "Qing4567.",
|
||||
"user_signature": "清酒红人面,财帛动人心",
|
||||
"nickname": "“萬事顺意”",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7d3de3d6b18a23b510114e885face9a9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153847
|
||||
},
|
||||
{
|
||||
"comment_id": "7260787411206374181",
|
||||
"create_time": 1690533819,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "勇敢自在的状态最迷人,爱了爱了[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "946",
|
||||
"user_id": "127197135778190",
|
||||
"sec_uid": "MS4wLjABAAAAvmDqWfNL050pMyv_d0sepS2bbnSM04pi-qvBkFfXduc",
|
||||
"short_user_id": "87755760620",
|
||||
"user_unique_id": "87755760620",
|
||||
"user_signature": "诠润丨福瑞达生物旗下子品牌\n专注弱敏肌健康护理,通过肌肤由外至内、由浅至深的科学护理方案,精⼼调配敏感肌安全修护配方,构建肌肤的“表层屏障”与“内衬屏障”,解决肌肤敏感引发的脱屑、瘙痒、泛红等肌肤问题。“内外兼修“,重塑肌肤健康之美。",
|
||||
"nickname": "诠润护肤旗舰店",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ddd319a58c3e41c9a895245c9aa00b12.jpeg?from=2956013662",
|
||||
"sub_comment_count": "6",
|
||||
"last_modify_ts": 1711644153851
|
||||
},
|
||||
{
|
||||
"comment_id": "7262294393439290170",
|
||||
"create_time": 1690884686,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "好美好自在",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15",
|
||||
"user_id": "83792154750",
|
||||
"sec_uid": "MS4wLjABAAAAZu4mRPW5Lb8qdCJhXYJDUDO8oc9EdKUQYZGENiIO6E4",
|
||||
"short_user_id": "594669723",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "种花🌸种菜🍅养狗🐕🐢\n永远真诚,你所见即是我,真实的我\n饭搭子:@胖胖吃不堡🍔 吃播号\n家人:@胖虎普拉斯 我和福福朋友圈\n工作直接私信",
|
||||
"nickname": "再吃胖胖啦🐖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_8e8505d5e48c5315f0541db86230b281.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153856
|
||||
},
|
||||
{
|
||||
"comment_id": "7351272883370869540",
|
||||
"create_time": 1711601602,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "漂亮[赞][鼓掌][爱心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "1944414929825048",
|
||||
"sec_uid": "MS4wLjABAAAAIDItZH_pp_Jd6MaGrKNMK9dlCHvh6k7gtyxhoy3xzizZZSwPZF28dCv01gSWUUjn",
|
||||
"short_user_id": "66076686760",
|
||||
"user_unique_id": "66076686760",
|
||||
"user_signature": "做自己快乐每一天",
|
||||
"nickname": "滕飞",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_0dd1d9117dce81f5d0aaafbc9a476f65.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153861
|
||||
},
|
||||
{
|
||||
"comment_id": "7347922858695262976",
|
||||
"create_time": 1710821613,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "弱弱地问一句:一只顾真的是香秀的弟弟嗎?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "5",
|
||||
"user_id": "2356955137181688",
|
||||
"sec_uid": "MS4wLjABAAAAYmFRxUfQiwAecbmnMEoh2XzBSosaWAmy_NAokoLdgSEvdDueKiIHMf6FZ0liISF6",
|
||||
"short_user_id": "3805877476",
|
||||
"user_unique_id": "dyohztfs89n9",
|
||||
"user_signature": "谢谢你这么优秀还关注我\n热爱生活,热爱分享\n买东西就是一场邂逅",
|
||||
"nickname": "丽丽洋",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_cfb6bbe02af3a68f5f308cb4b1655f60.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153865
|
||||
},
|
||||
{
|
||||
"comment_id": "7349934509766968116",
|
||||
"create_time": 1711289986,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "你们都有毒!!!各个视频都关注度那么高[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "103285325221",
|
||||
"sec_uid": "MS4wLjABAAAAusklfG54zm-z0gbQI4XBTjhfi2wL04IJStYddUA-qdY",
|
||||
"short_user_id": "1304346614",
|
||||
"user_unique_id": "lv06",
|
||||
"user_signature": "错过最好的年华。。。。",
|
||||
"nickname": "羽翼",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_e84a63596c1745349cb5db5113efc8cd.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153870
|
||||
},
|
||||
{
|
||||
"comment_id": "7351249155551380276",
|
||||
"create_time": 1711596078,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "你才是世界上最美的女人[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "694487055868271",
|
||||
"sec_uid": "MS4wLjABAAAAKtbAr_msPIrvsrNFPzh04H-pMkrT74yWjoN271alkfo",
|
||||
"short_user_id": "3430137786",
|
||||
"user_unique_id": "dongxin56636",
|
||||
"user_signature": "有时候觉得世界很小,不想见的人逛个超市都能碰见。有时候又觉得世界很大,想见的人却真的没有再见。\n 1998 射手座 冕宁人氏❤️",
|
||||
"nickname": "李先森❤️(不忘初心)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_d333f3d084df41129a7b4e64c33d9b28.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153875
|
||||
},
|
||||
{
|
||||
"comment_id": "7346574354794611465",
|
||||
"create_time": 1710507638,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "9",
|
||||
"user_id": "106021451110",
|
||||
"sec_uid": "MS4wLjABAAAA5YCDq7cxE8CuZjzLL3G0N5LD--gRTJwsl2LnBHs1BHo",
|
||||
"short_user_id": "1968441101",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "❤️有关必回,永不取关!(每一个都会回)\n没回就是上限第二天回 (新朋友比较多) 多久都回\n想像博主一样(快速涨粉) 点个关注我\n回关,虽迟必到\n多给我一点时间(新朋友)们👩🏻❤️👩🏽爱你们❤️",
|
||||
"nickname": "大雷爱生活「交朋友」❤️",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7a73f12ee779a91c1d13c1183e34e7b1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153879
|
||||
},
|
||||
{
|
||||
"comment_id": "7350635127003267849",
|
||||
"create_time": 1711453111,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "模特,他都很瘦,不可能吃胖,因为保持好身材",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "741536977663200",
|
||||
"sec_uid": "MS4wLjABAAAArctgcMIQNTwBigKHNk2gNmJBWeGwtWCY44KiI2A7YtE",
|
||||
"short_user_id": "21569125933",
|
||||
"user_unique_id": "21569125933",
|
||||
"user_signature": "@爱跑步的大叔,三年运动体重189斤,瘦到146斤。",
|
||||
"nickname": "昌大叔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osOM9AgA9I4A0CdbDCEAf4nlAxbeDAHsCgldxj.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644153884
|
||||
},
|
||||
{
|
||||
"comment_id": "7351375615336055579",
|
||||
"create_time": 1711625521,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "天上有朵会哭的云",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "99884857026",
|
||||
"sec_uid": "MS4wLjABAAAAhUsZPkvEEz6X-GcwXso3aNBzKRo7Zo_JT0UFnO0gpP0",
|
||||
"short_user_id": "1032801706",
|
||||
"user_unique_id": "czt7865",
|
||||
"user_signature": "",
|
||||
"nickname": "czt",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_2c67481e53dc4014b83cce7c22f46da1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154642
|
||||
},
|
||||
{
|
||||
"comment_id": "7351371016192852790",
|
||||
"create_time": 1711624449,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "好喜欢",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "62975337589",
|
||||
"sec_uid": "MS4wLjABAAAAvUk2WD_0VDJPAExmFYXmVQsVG5WcSx3lz0S8_lL7HXI",
|
||||
"short_user_id": "38764064",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "Freedom",
|
||||
"nickname": "小香BABY",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_a78bde760c1d2e5843a73704ab1446e0.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154646
|
||||
},
|
||||
{
|
||||
"comment_id": "7351366055526286080",
|
||||
"create_time": 1711623293,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "好瘦",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "68489345258",
|
||||
"sec_uid": "MS4wLjABAAAAlj3NO87MEWDbJY2waSrQmhbMZE_oy6xMGoP1iac5IjI",
|
||||
"short_user_id": "71563999",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "释然于心,从容于事,让一切随风",
|
||||
"nickname": "WANG DONG HUA",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ce2a2ee97be8dc1e1636dc5b09314f35.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154649
|
||||
},
|
||||
{
|
||||
"comment_id": "7351344504818975529",
|
||||
"create_time": 1711618276,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "@可乐加辣不加冰 好喜欢这种清冷气质",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "95629371226",
|
||||
"sec_uid": "MS4wLjABAAAAA9ow4oOItNoXedyscOf_zAP4p4y4TCdjYWWu2DV3E0A",
|
||||
"short_user_id": "605274049",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "藏起来",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_1a612043f0e0db9d4a8b2ad2afe26636.jpeg?from=2956013662",
|
||||
"sub_comment_count": "1",
|
||||
"last_modify_ts": 1711644154651
|
||||
},
|
||||
{
|
||||
"comment_id": "7351307007918752522",
|
||||
"create_time": 1711609550,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "3667601146255883",
|
||||
"sec_uid": "MS4wLjABAAAAfHp9cBUrFnwYMrKGiMpBmY1H20rG4xW90_XofIHfsrCk1vrikubDxMZVm5A_Cv6Q",
|
||||
"short_user_id": "3648993040",
|
||||
"user_unique_id": "WanmAaSy",
|
||||
"user_signature": "山东省,济宁市,姓名,刘一曼,出生年龄,一九七八年二月十三生日!文凭,三年日本硕士学位!工种;编导工作!制作电视剧剧本!各种民间小调剧本!书法龍转,鸟转体!爱好吹拉弹唱!喜欢爱交爱学者的文化朋友!你对我真心,我就对你真诚!欢迎欣赏;谢谢老铁们捧场!谢谢官方绿色平台支持!联系方式!手机13615372568.15153760599!微信号Ⅰym15372568🙏🙏🙏",
|
||||
"nickname": "户号!战神十三号!刘一曼。5122513",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/douyin-user-file_3c067eb51f3d62c303f488ac6c03cb1c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154654
|
||||
},
|
||||
{
|
||||
"comment_id": "7351268227688776488",
|
||||
"create_time": 1711600517,
|
||||
"ip_location": "西藏",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[666][666][666]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "98985331313",
|
||||
"sec_uid": "MS4wLjABAAAAjtoDiZLj8Ca4Td1farNkMrMT4D2v15fnFwkTH4Ttt_4",
|
||||
"short_user_id": "970874743",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "用户5165416254210",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3128b00098da0e5f00036.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154657
|
||||
},
|
||||
{
|
||||
"comment_id": "7351262104739267366",
|
||||
"create_time": 1711599092,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "羡慕你的人生",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1610111027787501",
|
||||
"sec_uid": "MS4wLjABAAAAoSGOwq8E787zpbdtMRWfSGEIHkM0KSRXbRZ7gCD_SkYgqYgkmkfGqVBl_t5n_rs-",
|
||||
"short_user_id": "88755391071",
|
||||
"user_unique_id": "88755391071",
|
||||
"user_signature": "",
|
||||
"nickname": "小啊轩",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_cca9e62b12558abc56f6502ca35bc392.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154659
|
||||
},
|
||||
{
|
||||
"comment_id": "7351068997499224886",
|
||||
"create_time": 1711554134,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "衣服哪里买的?",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "6715326339",
|
||||
"sec_uid": "MS4wLjABAAAAk5_b1U5tp7QigmrCSwgImJr3UGVpJqVF_gq1u0JwOkE",
|
||||
"short_user_id": "113868268",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🌻感谢关注与支持🌻\n从事健康美业12年\n一生只做一件事,那就是做好美业,让您拥有一张干净的脸!欢迎朋友来做客哦!\n我会定期分享美业文案与视频",
|
||||
"nickname": "平乡县皮肤管理中心",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oABnAJtEa1MDBee7M0QA94Aa70AbyfJ2AGtIzn.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154662
|
||||
},
|
||||
{
|
||||
"comment_id": "7351031189216953123",
|
||||
"create_time": 1711545328,
|
||||
"ip_location": "云南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "4125021154852575",
|
||||
"sec_uid": "MS4wLjABAAAACJBDix5bb6Q982sNR9cRc83U3Fl6jFmfrXNrFFxfrkgK7cvZ8XbzA-Bnjg1UCWF8",
|
||||
"short_user_id": "3734262067",
|
||||
"user_unique_id": "gaofushuai6081",
|
||||
"user_signature": "",
|
||||
"nickname": "髙富帅",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_40aa6057bc1347eaa897191406f00b7f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154665
|
||||
},
|
||||
{
|
||||
"comment_id": "7350646373563843368",
|
||||
"create_time": 1711455730,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "@没意思l 这种这种[色][色][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "4300904963513069",
|
||||
"sec_uid": "MS4wLjABAAAApzo_rkQs7qaKhG7lr8N8BLwIGp4fO92a8EWi4PEz7K9hLpDlGE1OEcahIRf8tP_c",
|
||||
"short_user_id": "3581801917",
|
||||
"user_unique_id": "huihui43471",
|
||||
"user_signature": "顺其自然",
|
||||
"nickname": "-kitty.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2811cf39c1bbd9f6c5b0a51c7790bcd3.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154668
|
||||
},
|
||||
{
|
||||
"comment_id": "7350561560966824714",
|
||||
"create_time": 1711435985,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "好喜欢这种感觉啊",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "71606121517",
|
||||
"sec_uid": "MS4wLjABAAAAqD2LiVmn0PFl0OvkuQ1yb_oLweMbznARq8mf0XKbNXc",
|
||||
"short_user_id": "89936501",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "小韩ya 🌻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_20ad3000278cef32f17eb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154670
|
||||
},
|
||||
{
|
||||
"comment_id": "7349819572595753747",
|
||||
"create_time": 1711263226,
|
||||
"ip_location": "天津",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "天津之光",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "104906467688",
|
||||
"sec_uid": "MS4wLjABAAAAMfVDHkLnffbfijKt11BjqPpqZrHtVw4nJ2hI1XInNP4",
|
||||
"short_user_id": "1555563111",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "会当击水三千里\n自信人生二百年",
|
||||
"nickname": "⛷",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oYoDAebnCEQI9AkA4yg8D3PMcCvAqDrAeAA6Ig.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154681
|
||||
},
|
||||
{
|
||||
"comment_id": "7349709594401260342",
|
||||
"create_time": 1711237622,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "你",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "83783317031",
|
||||
"sec_uid": "MS4wLjABAAAAmxqVr6BtEtUaIu4tlUuqeAVN8QVX7sDMIciGJlzlGmQ",
|
||||
"short_user_id": "378844235",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "愿朋友平安健康幸福快乐,谢谢大家支持和关注!",
|
||||
"nickname": "2626",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_osIzk8AKprpfACFGQMDAZLAAhDDdz4AEtgtf94.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154689
|
||||
},
|
||||
{
|
||||
"comment_id": "7349617046139781951",
|
||||
"create_time": 1711216089,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "很想去的地方。 可能也只能想想[我想静静]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101814333727",
|
||||
"sec_uid": "MS4wLjABAAAAY83UzWnOG0aZoCbG-WSI-M4X1YGCEgBkW4NIjrle4bs",
|
||||
"short_user_id": "1173056752",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "通讯录好友^_^",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/9b9f0014cc9a3f9e4586.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154698
|
||||
},
|
||||
{
|
||||
"comment_id": "7349575487797265167",
|
||||
"create_time": 1711206397,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "你的酒窝没有酒 我却醉得像条狗[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3",
|
||||
"user_id": "99628044312",
|
||||
"sec_uid": "MS4wLjABAAAAGUxwU3_t25EOPd2uLJ7AnQe-Kg4UmgkICTI1yBMlW3g",
|
||||
"short_user_id": "1082481261",
|
||||
"user_unique_id": "3838438wkh",
|
||||
"user_signature": "为了等你 我错过了等我的人",
|
||||
"nickname": "吴法",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_okgAXD4UlAAHDQYUAnC5BbeH8AbQNgb9bAaNfQ.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154709
|
||||
},
|
||||
{
|
||||
"comment_id": "7349499940534108980",
|
||||
"create_time": 1711188806,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[比心][比心][比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "945183514956180",
|
||||
"sec_uid": "MS4wLjABAAAAqjhXUXch4ihTag-d7TnXKoZ1I5jgs04fe-L0ZFOvYOE",
|
||||
"short_user_id": "2357097115",
|
||||
"user_unique_id": "liuxian92064",
|
||||
"user_signature": "66666",
|
||||
"nickname": "QEWR",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_c20b67dc8369d1d4fc79e31e67581f28.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154720
|
||||
},
|
||||
{
|
||||
"comment_id": "7349307989759443750",
|
||||
"create_time": 1711144121,
|
||||
"ip_location": "广西",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[太阳]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6",
|
||||
"user_id": "1473001749227239",
|
||||
"sec_uid": "MS4wLjABAAAAidVDvIx600hDts35Hgi8_CZG4GZ8Si5ORtKBiyjR9G7wweITIqShSizDMzg6xUNt",
|
||||
"short_user_id": "3419904791",
|
||||
"user_unique_id": "sijifa78952",
|
||||
"user_signature": "阳光健康,简单而快乐!",
|
||||
"nickname": "四季发",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_osrJfemADIDEgYyBaJb1gAhA9ApHlnC7AAlWCr.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154732
|
||||
},
|
||||
{
|
||||
"comment_id": "7349212591686992675",
|
||||
"create_time": 1711121905,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "@七秒鱼 [舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "418660746728",
|
||||
"sec_uid": "MS4wLjABAAAA2W9OLTg0adRscfwr1XQpjWO45Jv4Pj4HaMfvKjY4rB8",
|
||||
"short_user_id": "43849007543",
|
||||
"user_unique_id": "43849007543",
|
||||
"user_signature": "未命名",
|
||||
"nickname": "学不会炒饭",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMpZAlgQDVnA7CXePdCzHlf3RAUA9AAAIMd2bz.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154745
|
||||
},
|
||||
{
|
||||
"comment_id": "7349198948115055399",
|
||||
"create_time": 1711118726,
|
||||
"ip_location": "云南",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "[玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4",
|
||||
"user_id": "93420988292",
|
||||
"sec_uid": "MS4wLjABAAAAjL86QTD4jkWA7DaYlT-lWP3937aiVThOtc1zvEs9OOE",
|
||||
"short_user_id": "1208234465",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "云南山泉",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_0b9b06cf1a0149c79278091487fc685e.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154755
|
||||
},
|
||||
{
|
||||
"comment_id": "7349082985226519350",
|
||||
"create_time": 1711091727,
|
||||
"ip_location": "广西",
|
||||
"aweme_id": "7260749400622894336",
|
||||
"content": "真的很美",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "72939613449",
|
||||
"sec_uid": "MS4wLjABAAAADi7sQYZuWZLr7VVGICk5VuvSEAGR25kUtNPicfDz1ow",
|
||||
"short_user_id": "103213577",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "起风了♐️",
|
||||
"nickname": "九",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_db72d0b6541450942370ac907d4acf9c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644154764
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7260749400622894336.md
Normal file
882
public/data/comments/video_id_7267478481213181238.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7312915638987555593",
|
||||
"create_time": 1702670873,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "最初做“东方美学”系列 是因为想通过自己小小的力量去宣传我们东方文化,没有想到会获得那多人的喜欢,“东方美学”这四个字 我斟酌了很久, “美学”不仅仅只是服饰 可以是文化交流 可以是关于对美的本质的探讨 ,“天地万物与我来唯一 ”这也是我最初起源用“东方美学”这个词的原因❤️所有视频都是我个人构思 剪辑 发布的 没有公司团队运营!服饰也是我个人喜好带去旅游的[太阳]从第一站到现在看到越来越多的人留学生以及路人穿国风的衣服自信的走在路上 我真的超级开心!!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3192",
|
||||
"user_id": "24058267831",
|
||||
"sec_uid": "MS4wLjABAAAAAAKy2_R6k-oFWT5E-97gbGZQ1laaweQMWImJDkDaef0",
|
||||
"short_user_id": "6187453",
|
||||
"user_unique_id": "elfin16",
|
||||
"user_signature": "记录成长\n希望拥有向上生命力🐰☀️\n理想型:@六猪变美日记 \n🍠:彭十六elf \n商务v:MUXUAN16e(招摄影&剪辑)\n演出v:ME13919\n何其荣幸 何德何能💜",
|
||||
"nickname": "彭十六elf",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_99d3a4923c94e1e27b16209743eaec24.jpeg?from=2956013662",
|
||||
"sub_comment_count": "22",
|
||||
"last_modify_ts": 1711644155992
|
||||
},
|
||||
{
|
||||
"comment_id": "7267776615597359926",
|
||||
"create_time": 1692161122,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "他们的目光是欣赏不是打量[流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "36536",
|
||||
"user_id": "73695745581",
|
||||
"sec_uid": "MS4wLjABAAAAkcsOgLNbp0KNT1wEEuu1Rmegjc_vCBibLWvTw19fTYE",
|
||||
"short_user_id": "1921005886",
|
||||
"user_unique_id": "FCFFMar1",
|
||||
"user_signature": "@说",
|
||||
"nickname": "🍟..",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7dc55c7bc1b5ccf33cc87c314b6517ee.jpeg?from=2956013662",
|
||||
"sub_comment_count": "165",
|
||||
"last_modify_ts": 1711644156003
|
||||
},
|
||||
{
|
||||
"comment_id": "7268321084943876919",
|
||||
"create_time": 1692287896,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "看啊,她们都是笑着的[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "4238",
|
||||
"user_id": "1605699951676907",
|
||||
"sec_uid": "MS4wLjABAAAAJ-Jw-Q93--Wo-ZWoTvp0Q3aHeYgMgryF4hIBudWekpG-0BGfBUDGfI3wy-ErQthw",
|
||||
"short_user_id": "20608411512",
|
||||
"user_unique_id": "20608411512",
|
||||
"user_signature": "",
|
||||
"nickname": "星陨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ooBsQ6ClAgAgfC9MADE4bAXAqHrnK853rC8e9A.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644156014
|
||||
},
|
||||
{
|
||||
"comment_id": "7276727044934124344",
|
||||
"create_time": 1694245051,
|
||||
"ip_location": "云南",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "从此,男孩的心中有了白月光[泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21532",
|
||||
"user_id": "3773952187700740",
|
||||
"sec_uid": "MS4wLjABAAAAk-9PcJ2aiHOVGqBg_HCV7pczqjgiQKt8lUy9jXGfSQSzTRWZStGIVsk4zCZ7sg_S",
|
||||
"short_user_id": "45735179162",
|
||||
"user_unique_id": "zf3344830ctx",
|
||||
"user_signature": "我把错归结于自己,怪不了任何人。",
|
||||
"nickname": "疏离.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o0AAy2HgQCAXalj2Mf5MMcO8Eefi4DA1PIP2Ae.jpeg?from=2956013662",
|
||||
"sub_comment_count": "164",
|
||||
"last_modify_ts": 1711644156025
|
||||
},
|
||||
{
|
||||
"comment_id": "7268440521424519988",
|
||||
"create_time": 1692315714,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "妈妈 我看见外国人了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "15235",
|
||||
"user_id": "92330274698",
|
||||
"sec_uid": "MS4wLjABAAAA0-zN2uSSh6u6K5b6JUI_yqqeK1zVUjMkfYgCZ7FoKJA",
|
||||
"short_user_id": "332295468",
|
||||
"user_unique_id": "15355296033a",
|
||||
"user_signature": "捡螺抓螃蟹+我",
|
||||
"nickname": "赶海一哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_1430ccdfc00dcf2c954476942486d81f.jpeg?from=2956013662",
|
||||
"sub_comment_count": "103",
|
||||
"last_modify_ts": 1711644156034
|
||||
},
|
||||
{
|
||||
"comment_id": "7267479160518820644",
|
||||
"create_time": 1692091863,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "不是回国了[流泪]怎么还在法国",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "12453",
|
||||
"user_id": "92657600038",
|
||||
"sec_uid": "MS4wLjABAAAA1aANNflDuggG7wO0gEdoi8smRFZynUJ1glzini54yzc",
|
||||
"short_user_id": "339088308",
|
||||
"user_unique_id": "sky.0102",
|
||||
"user_signature": "#",
|
||||
"nickname": "早点睡 ̆̈",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_910231a0a37d95ab70cccbe66531bd15.jpeg?from=2956013662",
|
||||
"sub_comment_count": "18",
|
||||
"last_modify_ts": 1711644156045
|
||||
},
|
||||
{
|
||||
"comment_id": "7267725549048218428",
|
||||
"create_time": 1692149234,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "好熟悉的穿搭[绿帽子]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "681",
|
||||
"user_id": "2365752691137240",
|
||||
"sec_uid": "MS4wLjABAAAAAgkGnKeITMLJvjSIMMD0GMxQNtGDOX0bjDaB5f_WTx9OgeMkcQJZStqBBtz-jzaN",
|
||||
"short_user_id": "3518741138",
|
||||
"user_unique_id": "zyhan070323",
|
||||
"user_signature": "就爱学习",
|
||||
"nickname": "香菜不感冒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_b69b59418eef404185b2f1f7240b6858.jpeg?from=2956013662",
|
||||
"sub_comment_count": "2",
|
||||
"last_modify_ts": 1711644156066
|
||||
},
|
||||
{
|
||||
"comment_id": "7267479730084840250",
|
||||
"create_time": 1692091997,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "这才是国人的审美![赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "18032",
|
||||
"user_id": "106660859294",
|
||||
"sec_uid": "MS4wLjABAAAAJr174vM9QA9TyRbIqZB7fzfhYnZ0tfEb-HtYeNpW6to",
|
||||
"short_user_id": "1731760481",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "免费上门免费鉴定免费估价\n私信必回,没有套路!\n主打服务和性价比🤩\n目前已有200个城市开通上门服务\n在营线下门店400+家\n让用户放心买 省心卖❤️",
|
||||
"nickname": "转转奢侈品",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_1bc0a1682b33fe2b3ee2cf79a7f40736.jpeg?from=2956013662",
|
||||
"sub_comment_count": "203",
|
||||
"last_modify_ts": 1711644156076
|
||||
},
|
||||
{
|
||||
"comment_id": "7267737555989201664",
|
||||
"create_time": 1692152023,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "我有时候真的很想成为一个女孩,有那么多漂亮的裙子衣服可以穿,我现在出去买衣服除了苦菜子就是千篇一律的短袖外套,一点新意没有",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1415",
|
||||
"user_id": "4037020336788471",
|
||||
"sec_uid": "MS4wLjABAAAA11vg14vw2k8NcuO3dXwuESj3wGHjuPCI1r78ex1zGemSdOaT87bXuJQ0W-_0AmAa",
|
||||
"short_user_id": "3595151507",
|
||||
"user_unique_id": "zql182xxxx3397",
|
||||
"user_signature": "_",
|
||||
"nickname": "青衫啊",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_79fd50181770493589983922703b0272.jpeg?from=2956013662",
|
||||
"sub_comment_count": "141",
|
||||
"last_modify_ts": 1711644156088
|
||||
},
|
||||
{
|
||||
"comment_id": "7267588863685919488",
|
||||
"create_time": 1692117430,
|
||||
"ip_location": "黑龙江",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "友情提示不想出国的朋友,这种质感,其实哈尔滨也能拍[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1991",
|
||||
"user_id": "2348147786918477",
|
||||
"sec_uid": "MS4wLjABAAAAZ02ZTbMeDSeX-b1Kjy7h9NTKKaVUjlOwGllaFiOyjTND-67d93LGjeTTC0oOx-A2",
|
||||
"short_user_id": "3489070782",
|
||||
"user_unique_id": "dynv018fzb5e",
|
||||
"user_signature": "🏆2006年美国周刊年度风云人物\n🏆2008年感动中国组委会特别大奖\n🏆2009年年度地球卫士奖\n🏆2012年世界末日生存者\n🏆2022年奥林匹克杯获得者",
|
||||
"nickname": "h💕",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_d402b73a316141dfaa23755acc38ca07.jpeg?from=2956013662",
|
||||
"sub_comment_count": "74",
|
||||
"last_modify_ts": 1711644156098
|
||||
},
|
||||
{
|
||||
"comment_id": "7267479755153883961",
|
||||
"create_time": 1692092001,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "“先生,我认为文言文比白话文更加简洁。”\n“请举例。”\n“就好像沉鱼落雁,闭月羞花这句成语不是比白话文更加简洁吗?”\n“沉鱼落雁,闭月羞花是八个字,改用白话文三个字足矣。”\n“怎样讲?”\n“彭十六”",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1522",
|
||||
"user_id": "2154686604127591",
|
||||
"sec_uid": "MS4wLjABAAAAgyEwaCVZ4tDMzQnwfj58itSO8Xvi_cCUQ0m56EXgJzAPCurXGfYWsld7RtPPbiFr",
|
||||
"short_user_id": "3697101218",
|
||||
"user_unique_id": "lx14220",
|
||||
"user_signature": "",
|
||||
"nickname": "甫.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMEIN9ClHkSdbem5V8CnvgAACeAbAzxAcIAuDn.jpeg?from=2956013662",
|
||||
"sub_comment_count": "35",
|
||||
"last_modify_ts": 1711644156202
|
||||
},
|
||||
{
|
||||
"comment_id": "7268196612386980643",
|
||||
"create_time": 1692258909,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "小孩:不惑之年还能碰上这种场面",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2282",
|
||||
"user_id": "105012996479",
|
||||
"sec_uid": "MS4wLjABAAAA679ZNPxX03rvXuLLuq-my1iZAD2SwVvqa7OZST1cCJQ",
|
||||
"short_user_id": "1695001000",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "RUN",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oUBeIIDnAqbCyToALUlfDjoQ5AemL2AfRaI4NA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "18",
|
||||
"last_modify_ts": 1711644156214
|
||||
},
|
||||
{
|
||||
"comment_id": "7267479869604250402",
|
||||
"create_time": 1692092029,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "连外国朋友都忍不住多看几眼[流泪][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1776",
|
||||
"user_id": "106639074509",
|
||||
"sec_uid": "MS4wLjABAAAAS2z1C9RgMjaSk8edw6Wpnmox1BYRMZzB3n7BOrBZP5M",
|
||||
"short_user_id": "1730076543",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "a09y",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_9a4ab0d524b345f7a7625c6b36d2b158.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644156227
|
||||
},
|
||||
{
|
||||
"comment_id": "7267526222682719039",
|
||||
"create_time": 1692102820,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "现在很多博主去国外把中国的传统文化给外国人展示这是我们的传统文化,真的很好[流泪],很多外国人也不知道这是我们的文化,是要好好的宣传,同时也要文化自信",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "525",
|
||||
"user_id": "1169480640367028",
|
||||
"sec_uid": "MS4wLjABAAAAsvtPG2x9b0d9k4rz9bCgp8G6LtdekjkoQ295iBs8_N4PVPcbGWYy_q4GDvXgwshe",
|
||||
"short_user_id": "3492281578",
|
||||
"user_unique_id": "ajuhhhhh",
|
||||
"user_signature": "",
|
||||
"nickname": "iya^^",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4e2nbAPBDREQxzBRAKAeErYIv7MAArwDBfA2F.jpeg?from=2956013662",
|
||||
"sub_comment_count": "7",
|
||||
"last_modify_ts": 1711644156238
|
||||
},
|
||||
{
|
||||
"comment_id": "7269037708086461225",
|
||||
"create_time": 1692454738,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "东方美学这题我会,粉色是不一样的美[比心]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "8063",
|
||||
"user_id": "84649980451",
|
||||
"sec_uid": "MS4wLjABAAAA0w8tx-BC52VcwpJc5VSW62ofMADEPRL9NFDyqvaSCm8",
|
||||
"short_user_id": "2183935207",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "🌟做不被定义的女孩\n🌈爱自己才是终身浪漫的开始💗",
|
||||
"nickname": "🍓草莓牛奶妹⁹⁸⁵",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_e5b5b673371c92dd7188fc0c7c823775.jpeg?from=2956013662",
|
||||
"sub_comment_count": "335",
|
||||
"last_modify_ts": 1711644156249
|
||||
},
|
||||
{
|
||||
"comment_id": "7267502804549468989",
|
||||
"create_time": 1692097369,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "她火的时候真的才16岁吗[流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2265",
|
||||
"user_id": "107755253032",
|
||||
"sec_uid": "MS4wLjABAAAABDYK_1shVLxNUSR4tjxvY6c_9QDq31vBB6BFRPSeDs8",
|
||||
"short_user_id": "1759817599",
|
||||
"user_unique_id": "131.45.20",
|
||||
"user_signature": "听说喜欢一个人要喜欢很久",
|
||||
"nickname": "城南旧事",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMAAp8enhqwGnGGA9b0CRdAegNDwACAISkcGE5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "5",
|
||||
"last_modify_ts": 1711644156263
|
||||
},
|
||||
{
|
||||
"comment_id": "7269084905102279464",
|
||||
"create_time": 1692465754,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "外国人的眼神里并不是鄙夷与不解,而是欣赏与赞美,心里不由得感叹中国文化的魅力和伟大[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "3407",
|
||||
"user_id": "987783797933308",
|
||||
"sec_uid": "MS4wLjABAAAArpG9YhNycTaA7IDEYfif-KQzYesE82A9DQVo0ojNpGs",
|
||||
"short_user_id": "63788840275",
|
||||
"user_unique_id": "63788840275",
|
||||
"user_signature": "-浪漫不一定非得是一束花💐 一个小礼物也是~\n以欢喜之心 慢度日常!",
|
||||
"nickname": "羽宝儿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oIe1APbnCQiC9HkADxfUMz7j4CmAGDGA8AAbgg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "30",
|
||||
"last_modify_ts": 1711644156278
|
||||
},
|
||||
{
|
||||
"comment_id": "7267507603301876521",
|
||||
"create_time": 1692098483,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "[流泪][流泪]美惨",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "6056",
|
||||
"user_id": "59150254410",
|
||||
"sec_uid": "MS4wLjABAAAA3fehTGA-sn1J4lgu2R87BoOBTQsP0IaI2ap_HoLTKJU",
|
||||
"short_user_id": "9031493",
|
||||
"user_unique_id": "IAMCHEESE",
|
||||
"user_signature": "@一只起司 \n𝐰𝐨𝐫𝐤:𝐂𝐇𝐄𝐄𝐒𝐄𝐍𝐙𝐖\n𝙬𝙚𝙞𝙗𝙤\\📕:起司姨太\n团队招人:cheesenzw(编导 内容运营备注)",
|
||||
"nickname": "起司姨太",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_74d159d507d7a66cb8a15a7846941861.jpeg?from=2956013662",
|
||||
"sub_comment_count": "37",
|
||||
"last_modify_ts": 1711644156294
|
||||
},
|
||||
{
|
||||
"comment_id": "7267579733327938340",
|
||||
"create_time": 1692115293,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "哇,是真美啊[流泪][流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "53",
|
||||
"user_id": "83789645036",
|
||||
"sec_uid": "MS4wLjABAAAAfRwyIWhQ6K4moBX1DtgheAuog4MyApof4R5jSz9MJkw",
|
||||
"short_user_id": "180771992",
|
||||
"user_unique_id": "24827297199",
|
||||
"user_signature": "",
|
||||
"nickname": "180771992",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/aweme_default_avatar.png.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644156306
|
||||
},
|
||||
{
|
||||
"comment_id": "7267492531611517753",
|
||||
"create_time": 1692094972,
|
||||
"ip_location": "西藏",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "马面裙真的给人一种国泰民安的感觉",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1316",
|
||||
"user_id": "1023006402936851",
|
||||
"sec_uid": "MS4wLjABAAAAe36RoBHrOZ77QMy8ZH6j4Ry0KjLdnR3YcuATOTE-hW37nD_-_bI8ekSDmXlLj4C1",
|
||||
"short_user_id": "69186708516",
|
||||
"user_unique_id": "VTJ0046",
|
||||
"user_signature": "💫@ \n 落日弥漫的橘边透亮的星💝",
|
||||
"nickname": "悸桃G",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4seAAgD9N9b8zDsjgAIgIA4EAPlZCnWpoOAeC.jpeg?from=2956013662",
|
||||
"sub_comment_count": "5",
|
||||
"last_modify_ts": 1711644156318
|
||||
},
|
||||
{
|
||||
"comment_id": "7268289692562457356",
|
||||
"create_time": 1692280578,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "早就想说了,啊啊其实我觉得这种汉元素的衣服,有东方韵味的就够了,那些全套的汉服真的感觉怪怪的,换位思考一下,一个外国人穿着什么全套的克里诺林裙啊巴洛克裙在故宫里逛,还要拍照,肯定会有人说的吧,有种中国人这么干就是弘扬传统文化,外国人干就会被骂的双标感[流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2964",
|
||||
"user_id": "60675780312",
|
||||
"sec_uid": "MS4wLjABAAAAll4Jqpxy6vNoCU0hi4GgltpuVpRocuatEGj1cjqLQSs",
|
||||
"short_user_id": "619758400",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "叽里咕噜🎶",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_8c4fbe754aecfb95cbd26e53754bfdda.jpeg?from=2956013662",
|
||||
"sub_comment_count": "48",
|
||||
"last_modify_ts": 1711644157772
|
||||
},
|
||||
{
|
||||
"comment_id": "7351414136725898023",
|
||||
"create_time": 1711634490,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "1103",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1834418105758604",
|
||||
"sec_uid": "MS4wLjABAAAA6rX7IF9uPnHWKFz6AFwbNk5StuO6dmk7iwGGqrEu94G8i8CD2mqT7W3tRkDvRLgo",
|
||||
"short_user_id": "63803157257",
|
||||
"user_unique_id": "63803157257",
|
||||
"user_signature": "我绝对自由",
|
||||
"nickname": "Tevice",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogAVaLF9zIDQ2xHSAYfADh9A2Ct0lAAEhEgFAe.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157785
|
||||
},
|
||||
{
|
||||
"comment_id": "7351177441938162468",
|
||||
"create_time": 1711579382,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "[玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "98158680089",
|
||||
"sec_uid": "MS4wLjABAAAARKiTHfQjANY-A3d4ODuYIGtaREuDWfZ-1aTuCwOLRMk",
|
||||
"short_user_id": "917056552",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "过往",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_8880001d857bf237e362.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157798
|
||||
},
|
||||
{
|
||||
"comment_id": "7351086866722128667",
|
||||
"create_time": 1711558297,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "61560026749",
|
||||
"sec_uid": "MS4wLjABAAAA55voQsQ62rysqeCdkYX326NFKAstGJOdNBe6ws9ikjc",
|
||||
"short_user_id": "278970780",
|
||||
"user_unique_id": "Gz808_CLUB",
|
||||
"user_signature": "广州 网红夜店 808 CLUB酒吧\nKTV 商务接待 应酬 娱乐 生日派对道选🏌☎️18589266083(V❤️同步)\n点赞+关注👍,谢谢\n(免费赠送果盘,小食)",
|
||||
"nickname": "💫广州808 CLUB酒吧📱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oIDAQGfbeyZI5YB7S0BMmAemIAyn9AABAuGXHE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157810
|
||||
},
|
||||
{
|
||||
"comment_id": "7350986585507070720",
|
||||
"create_time": 1711534943,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "94212630213",
|
||||
"sec_uid": "MS4wLjABAAAA99GEddeqXBgvGJf9kiMr3RrzrBuIVqQC2pTDvqArlj8",
|
||||
"short_user_id": "388966292",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "世界上所有的惊喜和好运,都是你积累的温柔和善良",
|
||||
"nickname": "yoyo🍓",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_1f9c51e6ab17475b94f81c1034bc7cec.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157823
|
||||
},
|
||||
{
|
||||
"comment_id": "7350680261748687653",
|
||||
"create_time": 1711463619,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "把马面裙带火的女人[舔屏][舔屏][舔屏][舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3532061659118715",
|
||||
"sec_uid": "MS4wLjABAAAAmMvPWK5ewQ6XBE0Fu-bZPfLghU7Cqp55Y2Wz4Py583zyIo0dDuRxLXHgOUkVhsoc",
|
||||
"short_user_id": "95840369705",
|
||||
"user_unique_id": "919191dyqaz",
|
||||
"user_signature": "人的能力是有限的,无法战胜时间生老病死",
|
||||
"nickname": "宁死不给抖音一分钱",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4aA1ANhagAizQxNAICUeyAPAIEAfIAAzOAiSE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157834
|
||||
},
|
||||
{
|
||||
"comment_id": "7350679683316744979",
|
||||
"create_time": 1711463485,
|
||||
"ip_location": "西藏",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "酷",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "98559539092",
|
||||
"sec_uid": "MS4wLjABAAAADjMuQS_xqyTK-V6V_4q--_984dFmDzA_qmaudUig1jg",
|
||||
"short_user_id": "1223601920",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "留:白",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oM4CVlAGbACeAcnqAdIhrlQgbe9QK06ApNDIA4.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157847
|
||||
},
|
||||
{
|
||||
"comment_id": "7350546958007026459",
|
||||
"create_time": 1711432586,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "跪求马面裙[流泪][流泪][流泪][流泪][流泪][流泪]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "52228034662",
|
||||
"sec_uid": "MS4wLjABAAAAEPcUTNTP35ctvquVvqzUu2uh3PTMJeMmHo_f83gLYvg",
|
||||
"short_user_id": "63342780",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "我就是我,做自己的烟火",
|
||||
"nickname": "憨憨~hh",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3308000c7151febaf4c2.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157860
|
||||
},
|
||||
{
|
||||
"comment_id": "7350261141933261618",
|
||||
"create_time": 1711366036,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "好喜欢 十六 小鞠 卢昱晓 baby 的颜[摸头][摸头]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "2",
|
||||
"user_id": "1454002547459002",
|
||||
"sec_uid": "MS4wLjABAAAARpxPDLv797W2KFcGRug0gKPvIFhl5qCQ-MuADQrWpKbp37-jXBHatMBBb0XHq6kI",
|
||||
"short_user_id": "88836736321",
|
||||
"user_unique_id": "88836736321",
|
||||
"user_signature": "",
|
||||
"nickname": "爱笑的宝呀୧⍤⃝🌸",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oAAUAtTwzADyfA9AphhTKiEt8CDIH9PgJNeIdA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157873
|
||||
},
|
||||
{
|
||||
"comment_id": "7350158140174418728",
|
||||
"create_time": 1711342054,
|
||||
"ip_location": "江苏",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "后面几张照片觉了yyds",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "92813165686",
|
||||
"sec_uid": "MS4wLjABAAAAa2TDECzeQRBcq6R-cEftFjNcr7yShocQT30_diI0TPk",
|
||||
"short_user_id": "426553",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "吃包辣条压压惊。",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_owtBQQMGePADEsAfAC4uEsvAPHeAUQ0fg02xeH.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157886
|
||||
},
|
||||
{
|
||||
"comment_id": "7350127919727510308",
|
||||
"create_time": 1711335021,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "有宝贝知道衣服是哪家的吗[流泪][流泪][求求了][求求了][求求了]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "64652530230",
|
||||
"sec_uid": "MS4wLjABAAAAABURFk82qgtNHym2gnkCkHM-1puKq6vqKAgD2KrKFFg",
|
||||
"short_user_id": "52038434",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "OMO",
|
||||
"nickname": "zz是芝芝阿、",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2db9a00000813ed798784.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157899
|
||||
},
|
||||
{
|
||||
"comment_id": "7349958106322338560",
|
||||
"create_time": 1711295488,
|
||||
"ip_location": "海南",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "我想买这套衣服哪里买",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "62708442494",
|
||||
"sec_uid": "MS4wLjABAAAAdDJSuiYO2DhLjOPB3LJ5SGW7cOqQGnym5wtEeIfK1AY",
|
||||
"short_user_id": "30797357",
|
||||
"user_unique_id": "ww5205201234",
|
||||
"user_signature": "一個德藝雙馨、不務正業的中年美少女\n一個喜歡舉高高的健身女孩 不閒聊、不社交、不喝酒\n尤克里里、箜篌、古筝、卡林巴拇指琴、畫畫、唱歌、欣賞舞蹈、看戲都擅長一點的半全能宝藏女孩\n一半煙火以謀生,一半煙火以謀愛\n心有猛虎,细嗅蔷薇160746536\n感恩每个点赞的你",
|
||||
"nickname": "寶藏女孩Bianca",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_ca9f10d41c37fcf87044d11ee7155618.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157911
|
||||
},
|
||||
{
|
||||
"comment_id": "7349881481852289846",
|
||||
"create_time": 1711277639,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "大小姐驾到!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100705566778",
|
||||
"sec_uid": "MS4wLjABAAAAwstRxVa5dqiCmzzz-nSeami6ajaGlym3F5qILh_mFKc",
|
||||
"short_user_id": "1089569000",
|
||||
"user_unique_id": "jianLeon666888",
|
||||
"user_signature": "生在京城,心浮四海。",
|
||||
"nickname": "纪安",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4AAkQAmENlAWK3kWeDWCewA9AUnBgiCXIbGDq.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157926
|
||||
},
|
||||
{
|
||||
"comment_id": "7349775380415382308",
|
||||
"create_time": 1711252938,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "@Daisy. 马面裙就这个",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "104793188823",
|
||||
"sec_uid": "MS4wLjABAAAAHbZZpVVLVVQjrPgWU9oyusNKFpIHUoSMYv6j_0hTzoM",
|
||||
"short_user_id": "1540611514",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "@晓宇_ \n\n@刘佳梁",
|
||||
"nickname": "你是不是油饼√",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oMCveAzi3CsNUANa9Gh9CqdhAvEfEAy1AIgAjg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157940
|
||||
},
|
||||
{
|
||||
"comment_id": "7349736805800051497",
|
||||
"create_time": 1711243958,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "18年的夏天十六是我的女神,白月光的存在,当年我也只是个中考才毕业的小女孩[求求了]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "2365760049519534",
|
||||
"sec_uid": "MS4wLjABAAAAWkVAvd-Nkzh5-fI6b8CnMdlNsJ4RFYsdjxWkaHNdOcEvIAEJdIUQ8yd7DtK-pwwA",
|
||||
"short_user_id": "3725838642",
|
||||
"user_unique_id": "Erinlpz",
|
||||
"user_signature": "@🍂miss🍂",
|
||||
"nickname": "濯缨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oQAEAAnVhfASqhAgIeFzNFd7cSlAqNyLbAJNCQ.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157956
|
||||
},
|
||||
{
|
||||
"comment_id": "7349583885716374299",
|
||||
"create_time": 1711208352,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "1",
|
||||
"user_id": "99270811894",
|
||||
"sec_uid": "MS4wLjABAAAAYj226mLkUKHSRJYk8nfsupUm7uuf3gJQ8s7z7Ctq9_0",
|
||||
"short_user_id": "2816991967",
|
||||
"user_unique_id": "191118555douyin",
|
||||
"user_signature": "奋斗的人们闪着心爱的光\n讲述生命的韵律\n用新的视角看待太阳的光明\n委屈我的歌",
|
||||
"nickname": "一生一宁",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_34f25ae9870d4ddd8d7f98b64a70bb32.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157971
|
||||
},
|
||||
{
|
||||
"comment_id": "7349559756581602058",
|
||||
"create_time": 1711202733,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "[调皮][调皮][调皮]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "149990827108499",
|
||||
"sec_uid": "MS4wLjABAAAAlf1iVfoBMARYBYVaRswtWnBfueHsxBmcGbu5nZQDMcU",
|
||||
"short_user_id": "61328566036",
|
||||
"user_unique_id": "61328566036",
|
||||
"user_signature": "",
|
||||
"nickname": "七安🍃",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_o4jJAXNzCELU9MlAv8XRD54fnCjAuhkAfAAcIg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644157989
|
||||
},
|
||||
{
|
||||
"comment_id": "7349513164931924763",
|
||||
"create_time": 1711191885,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "@途径她的盛放 [泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "95850971183",
|
||||
"sec_uid": "MS4wLjABAAAACFvG1Row0WwgSbL-W9pm-rUnRgYE1dx5f7F5BdsxWlQ",
|
||||
"short_user_id": "613835098",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "……",
|
||||
"nickname": "孤影照惊鸿",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_f3c6dc3453f44ea0a3ed979949f9875a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158005
|
||||
},
|
||||
{
|
||||
"comment_id": "7349505708705071899",
|
||||
"create_time": 1711190149,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "他们会不会是在觉得你这样穿不热嘛!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "100910549274",
|
||||
"sec_uid": "MS4wLjABAAAA8a5l8r-i5riodBgn6_KpzxH8D748YPS88sZuzeWcFnQ",
|
||||
"short_user_id": "1102257929",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "🌈小欻欻",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_18aa0000190630a79e5a5.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644158112
|
||||
},
|
||||
{
|
||||
"comment_id": "7349430738121687834",
|
||||
"create_time": 1711172695,
|
||||
"ip_location": "山西",
|
||||
"aweme_id": "7267478481213181238",
|
||||
"content": "@谁点我一下 我也要买马面裙",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3661820193412716",
|
||||
"sec_uid": "MS4wLjABAAAAwwFVm1Tu7Nhu8DYvVNyRdUnrKxhhuoMmUrjorM33YXRQgwdj3-spLZjrVVVmuDsr",
|
||||
"short_user_id": "40274819678",
|
||||
"user_unique_id": "336665up",
|
||||
"user_signature": "",
|
||||
"nickname": "烟雨倦",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oI9CefAKAlRNAFFDylAGAaNVbAEAIArhzQDDhg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644158128
|
||||
}
|
||||
]
|
||||
BIN
public/data/comments/video_id_7267478481213181238.md
Normal file
882
public/data/comments/video_id_7270431418822446370.json
Normal file
@@ -0,0 +1,882 @@
|
||||
[
|
||||
{
|
||||
"comment_id": "7270809292486853416",
|
||||
"create_time": 1692867220,
|
||||
"ip_location": "湖北",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "好神奇 她家背景板居然会动!",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "499",
|
||||
"user_id": "98271740510",
|
||||
"sec_uid": "MS4wLjABAAAAt-V49kyF3WPolreh-lvOYXXDH_7ME5OXS6LORIBJwjU",
|
||||
"short_user_id": "924810968",
|
||||
"user_unique_id": "JLHJHL520",
|
||||
"user_signature": "",
|
||||
"nickname": "斑鸠拉baby",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_1376c87b710b447a907b429d523b1b8c.jpeg?from=2956013662",
|
||||
"sub_comment_count": "19",
|
||||
"last_modify_ts": 1711644161210
|
||||
},
|
||||
{
|
||||
"comment_id": "7270732630768780089",
|
||||
"create_time": 1692849372,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "兄弟们先别吵,待我用英语撩她\n\n hello, hua gu niang",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "114",
|
||||
"user_id": "69710860310",
|
||||
"sec_uid": "MS4wLjABAAAA1eTLh7oqUDRmif2DORGImM7KXUcSnx2mpk_k8hkrBW8",
|
||||
"short_user_id": "388399548",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "幸福有时只是回家的距离",
|
||||
"nickname": "常在心106",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/c8daee745773fa106724db5f4b2af5de.jpeg?from=2956013662",
|
||||
"sub_comment_count": "12",
|
||||
"last_modify_ts": 1711644161227
|
||||
},
|
||||
{
|
||||
"comment_id": "7270818081109181242",
|
||||
"create_time": 1692869263,
|
||||
"ip_location": "海南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我怀疑男人都喜欢这类型",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "273",
|
||||
"user_id": "2938328507234463",
|
||||
"sec_uid": "MS4wLjABAAAAlA_KDrYW4v3ReKP7HVsqtzCBgCPYfAxWcn3wNVcK1HRfekuoIVRkj7b3jX6eX9KD",
|
||||
"short_user_id": "4162903930",
|
||||
"user_unique_id": "dy1b7i4wafpgf",
|
||||
"user_signature": "感恩所有的遇见❤️\n谢谢你们喜欢我😊\n路线不清,风格不定,才艺不明",
|
||||
"nickname": "小小樱桃",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_3c3466c8a078448ab50fb6cb4a5dfa16.jpeg?from=2956013662",
|
||||
"sub_comment_count": "198",
|
||||
"last_modify_ts": 1711644161261
|
||||
},
|
||||
{
|
||||
"comment_id": "7270771240791573267",
|
||||
"create_time": 1692858357,
|
||||
"ip_location": "新疆",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "作为一个陕西人,拒绝女色,净化内蒙,不给江西丢脸。振兴浙江!从北京做起。\n ——湖南\n1分钟前·江苏",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "22",
|
||||
"user_id": "92449109005",
|
||||
"sec_uid": "MS4wLjABAAAAEPpap7rLX-OJGtwg7_xPaaqwQ-M2Wf3PEihgTyy7RZo",
|
||||
"short_user_id": "342023926",
|
||||
"user_unique_id": "Mr_MeiYe",
|
||||
"user_signature": "加油!",
|
||||
"nickname": "MeiYe丶",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oAIL5AaxPNAHshIyAnftACguM8xAhYEreAzLAY.jpeg?from=2956013662",
|
||||
"sub_comment_count": "8",
|
||||
"last_modify_ts": 1711644161293
|
||||
},
|
||||
{
|
||||
"comment_id": "7270696677316150079",
|
||||
"create_time": 1692841004,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我要拿你做屏保[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "46",
|
||||
"user_id": "93349299002",
|
||||
"sec_uid": "MS4wLjABAAAA4gYW1lBoiEnKmgilRDkSQ8ZhRut0A4zQrp2cQzEvNrk",
|
||||
"short_user_id": "975049267",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "大头儿子小头爸爸",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ogDAQDhbgmXIwIA9zG2l0Ae0UAenLGgAA4KZ0C.jpeg?from=2956013662",
|
||||
"sub_comment_count": "24",
|
||||
"last_modify_ts": 1711644161322
|
||||
},
|
||||
{
|
||||
"comment_id": "7270528186303464227",
|
||||
"create_time": 1692801770,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "无忧传媒出品必属精品",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "93",
|
||||
"user_id": "50651978239",
|
||||
"sec_uid": "MS4wLjABAAAAOTv7-cYt550NH1cyn3DBN56Qv6ra17lMgo8URZSeyYY",
|
||||
"short_user_id": "9528676",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "怒者,心之奴",
|
||||
"nickname": "旺仔牛B糖",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_2d3e1b57347842c4bc19744715d3b060.jpeg?from=2956013662",
|
||||
"sub_comment_count": "8",
|
||||
"last_modify_ts": 1711644161334
|
||||
},
|
||||
{
|
||||
"comment_id": "7270851123564348160",
|
||||
"create_time": 1692876959,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从浙江做起[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "43",
|
||||
"user_id": "93502346418",
|
||||
"sec_uid": "MS4wLjABAAAAKGtknUuTgDwIa3FxHq3-ZjYTZ64fMayTwqsPMddft9g",
|
||||
"short_user_id": "370909795",
|
||||
"user_unique_id": "9U787",
|
||||
"user_signature": "",
|
||||
"nickname": "大官人",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7c5a0ffff0d323d1b6350f4ab0a34da9.jpeg?from=2956013662",
|
||||
"sub_comment_count": "26",
|
||||
"last_modify_ts": 1711644161345
|
||||
},
|
||||
{
|
||||
"comment_id": "7270801653635449611",
|
||||
"create_time": 1692865438,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从我云南做起[酷拽]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "40",
|
||||
"user_id": "108588301793",
|
||||
"sec_uid": "MS4wLjABAAAAYCm1V--lpIWIPbMO82VBzB42HTAABm11yxrXFdl2WBs",
|
||||
"short_user_id": "1948182961",
|
||||
"user_unique_id": "Praiser_",
|
||||
"user_signature": "我见青山多妩媚,料青山见我应如是。",
|
||||
"nickname": "伊伊小盆友😋你好吖😘",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_okmID4Lhgue9AIS6lAQEba8cABANNvbeC5AInA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "20",
|
||||
"last_modify_ts": 1711644161360
|
||||
},
|
||||
{
|
||||
"comment_id": "7270814902216966972",
|
||||
"create_time": 1692868530,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从河……河北做起[发怒]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "49",
|
||||
"user_id": "3826751909403495",
|
||||
"sec_uid": "MS4wLjABAAAAWdQ3SsuTcGaGgkaV-t_cND0rzg41xrCk6Gqj6o1lG5M8gdueQ-VEuhddP2t7WXeq",
|
||||
"short_user_id": "98608526801",
|
||||
"user_unique_id": "98608526801",
|
||||
"user_signature": "佛系主播",
|
||||
"nickname": "尊嘟假嘟",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o0QejACMEl9NAwAbVbUSBIUTmBATenvcAADgAA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "27",
|
||||
"last_modify_ts": 1711644161382
|
||||
},
|
||||
{
|
||||
"comment_id": "7270820920675009341",
|
||||
"create_time": 1692869930,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从河南做起[白眼]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "47",
|
||||
"user_id": "69741359624",
|
||||
"sec_uid": "MS4wLjABAAAARoPRpKsNfOTyOdDdhEcPzfrk5nnPe67V9spyF-zkvaY",
|
||||
"short_user_id": "77451524",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "入山逢宰相,无事即神仙。",
|
||||
"nickname": "无事仙",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMD9rSQRpGzrAFneCgbU8WANA2IMYAiIAPylfA.jpeg?from=2956013662",
|
||||
"sub_comment_count": "24",
|
||||
"last_modify_ts": 1711644161405
|
||||
},
|
||||
{
|
||||
"comment_id": "7270535906876212004",
|
||||
"create_time": 1692803572,
|
||||
"ip_location": "重庆",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "娶她需要注意什么。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "41",
|
||||
"user_id": "2940511520306699",
|
||||
"sec_uid": "MS4wLjABAAAAcLrKISKpOPQnTaaRXKKEtUzbqGjeivfB1PMmjhCBld8xLej217IeQCTfoiBBQh2y",
|
||||
"short_user_id": "52649204656",
|
||||
"user_unique_id": "52649204656",
|
||||
"user_signature": "@小羽毛 \n\n看淡所有的不辞而别\n珍惜所有的不期而遇\n\n人世间的规律是,时间会冲淡一切,因为距离会切断情缘,故事会变成记忆。。。",
|
||||
"nickname": "小可爱👠",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_729d6afa1a6f4d88ae62065cd5dc8cbf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "124",
|
||||
"last_modify_ts": 1711644161426
|
||||
},
|
||||
{
|
||||
"comment_id": "7270812796471395131",
|
||||
"create_time": 1692868038,
|
||||
"ip_location": "湖南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色从湖…….湖北做起[看][看][看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "33",
|
||||
"user_id": "59275102267",
|
||||
"sec_uid": "MS4wLjABAAAAa6ATGMbR96t4gds6EGFSKe-0TdOlqKMupdH6hrTeh74",
|
||||
"short_user_id": "34917127",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "VX liushenglong2",
|
||||
"nickname": "正能量,",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_c7ed001bdaeadeb04f98.jpeg?from=2956013662",
|
||||
"sub_comment_count": "30",
|
||||
"last_modify_ts": 1711644161447
|
||||
},
|
||||
{
|
||||
"comment_id": "7270693019011171112",
|
||||
"create_time": 1692840154,
|
||||
"ip_location": "四川",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "作为一个安徽人,拒绝女色,振兴中华!从河南做起\n ——浙江\n1分钟前·广东",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "21",
|
||||
"user_id": "106501231912",
|
||||
"sec_uid": "MS4wLjABAAAAEk5kangXwGz9fJp-jA1TkotayFj8dpeOlYLQQbKo8TU",
|
||||
"short_user_id": "1751215381",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "饶杨",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_5c45acd4edd14c29b393cfe7eb3f3566.jpeg?from=2956013662",
|
||||
"sub_comment_count": "15",
|
||||
"last_modify_ts": 1711644161473
|
||||
},
|
||||
{
|
||||
"comment_id": "7270877810040947514",
|
||||
"create_time": 1692883167,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从其他省做起,广东做不到",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "186",
|
||||
"user_id": "85344507851",
|
||||
"sec_uid": "MS4wLjABAAAA7l5KGacF4-voI9Qh5SJ7PioSFb55jEUimgZ45RoIi3E",
|
||||
"short_user_id": "194223969",
|
||||
"user_unique_id": "IIlIlIIlIIII",
|
||||
"user_signature": "山茶花读不懂白玫瑰,相识,相知,憾收尾",
|
||||
"nickname": "黄泛泛",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4c7a1e94942845cdba45c657a56e06eb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "15",
|
||||
"last_modify_ts": 1711644161518
|
||||
},
|
||||
{
|
||||
"comment_id": "7271223445786149666",
|
||||
"create_time": 1692963649,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我老公喜欢这种[泣不成声][泣不成声][泣不成声]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "20",
|
||||
"user_id": "50839144571",
|
||||
"sec_uid": "MS4wLjABAAAA1kfxmupUbFmzbcgqV56C7YBNtXttTGow9gTl3tOTuwM",
|
||||
"short_user_id": "91784555",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "小 妮 子",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_o4NC2ERACWczHPGAAAAejdt0AWAfy2hygE1IBs.jpeg?from=2956013662",
|
||||
"sub_comment_count": "9",
|
||||
"last_modify_ts": 1711644161565
|
||||
},
|
||||
{
|
||||
"comment_id": "7270783731642843943",
|
||||
"create_time": 1692861269,
|
||||
"ip_location": "江西",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "多拍点我们江西人爱看[捂脸]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "41",
|
||||
"user_id": "97285679532",
|
||||
"sec_uid": "MS4wLjABAAAAV1fyPeHTum2BwauEZCWyqoSyxQenUsMfQRuA_olLjCY",
|
||||
"short_user_id": "854157950",
|
||||
"user_unique_id": "cxc1996329",
|
||||
"user_signature": "高价回收各种废品,大量收购. 欢迎来电话 微信13870744100",
|
||||
"nickname": "小春废品回收😂",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_881656ead711433aad1bcb7962e13615.jpeg?from=2956013662",
|
||||
"sub_comment_count": "19",
|
||||
"last_modify_ts": 1711644161614
|
||||
},
|
||||
{
|
||||
"comment_id": "7270818097597809466",
|
||||
"create_time": 1692869271,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色从山西做起",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "31",
|
||||
"user_id": "101379375699",
|
||||
"sec_uid": "MS4wLjABAAAAX6o5lXQh1UztCm89lwhknZRWkDRAejssvWn8HiqJeWk",
|
||||
"short_user_id": "3757577472",
|
||||
"user_unique_id": "bajianyaoshu",
|
||||
"user_signature": "",
|
||||
"nickname": "長城.",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_7bad27cbde753b39b6c5bd8d94cef2bb.jpeg?from=2956013662",
|
||||
"sub_comment_count": "22",
|
||||
"last_modify_ts": 1711644161664
|
||||
},
|
||||
{
|
||||
"comment_id": "7270656304384394041",
|
||||
"create_time": 1692831610,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我怀疑男生都喜欢这款",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "43",
|
||||
"user_id": "96096412847",
|
||||
"sec_uid": "MS4wLjABAAAAeW2c6bMafqgibykrKHdR-FnV4c0qMqYAnSwNxlXboTg",
|
||||
"short_user_id": "1383952222",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "一个80后的,感谢关注,感谢平台。",
|
||||
"nickname": "紫罗兰、永不言弃",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_91253c20e1fb41108b8eb7b33b6767b7.jpeg?from=2956013662",
|
||||
"sub_comment_count": "39",
|
||||
"last_modify_ts": 1711644161789
|
||||
},
|
||||
{
|
||||
"comment_id": "7270897828351689511",
|
||||
"create_time": 1692887833,
|
||||
"ip_location": "云南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "拒绝女色,从其他省做起,云南做不到。",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "35",
|
||||
"user_id": "60063065766",
|
||||
"sec_uid": "MS4wLjABAAAAbXAZVQr9vsuonXj87v7zC4sPZ0rNGdRT8o0ww_ZZQ9Y",
|
||||
"short_user_id": "13671720",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "一个网友",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_ocvAVhbzgzACZ4kftAyeAAAEEcsQGlIFlwFAtD.jpeg?from=2956013662",
|
||||
"sub_comment_count": "4",
|
||||
"last_modify_ts": 1711644161823
|
||||
},
|
||||
{
|
||||
"comment_id": "7271601484722373439",
|
||||
"create_time": 1693051669,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "冷知识,建议大家把同城调成台湾,全是甜妹[看]。澳门全是御姐[看]三亚全是泳装[看]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": true,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "16",
|
||||
"user_id": "64586176029",
|
||||
"sec_uid": "MS4wLjABAAAAddmqRZwMno8vWufKaV9CC66w99zaVL12PdqtuKcQAFk",
|
||||
"short_user_id": "178928208",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "团团18斤",
|
||||
"nickname": "🍃",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_b321f2b90a70d444ab4b36265ff0fead.jpeg?from=2956013662",
|
||||
"sub_comment_count": "3",
|
||||
"last_modify_ts": 1711644161856
|
||||
},
|
||||
{
|
||||
"comment_id": "7351430490148946700",
|
||||
"create_time": 1711638298,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "不用怀疑",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "96350005138",
|
||||
"sec_uid": "MS4wLjABAAAAvh2yvPVrxru6p--uF0H8or2y5BsvfpsMQULXLRSZNVw",
|
||||
"short_user_id": "687488628",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "🌈🌈久久就就",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oUHD8yBqhKXYAf7CgACEAgAHpxAwCLzIAImNeB.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163302
|
||||
},
|
||||
{
|
||||
"comment_id": "7349246201914819362",
|
||||
"create_time": 1711129740,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "99347699015",
|
||||
"sec_uid": "MS4wLjABAAAAzDK7Fqpud1UyUMshKJuwKqveQlxT3DeFyB8QaEA1Otc",
|
||||
"short_user_id": "995684120",
|
||||
"user_unique_id": "huazai999_666",
|
||||
"user_signature": "影视、🎤音乐🎵、篮球⛹🏻🏀、游泳🏊🏻、🤸♀️健身、旅游……",
|
||||
"nickname": "天道酬勤Com on",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_2d5c90e5302bb6b455d09a9af3a64cb1.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163327
|
||||
},
|
||||
{
|
||||
"comment_id": "7348910758552814374",
|
||||
"create_time": 1711051671,
|
||||
"ip_location": "北京",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[玫瑰][玫瑰][玫瑰]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "883645178981268",
|
||||
"sec_uid": "MS4wLjABAAAAr2WiLGjMpTygBlfYy39k0up0wH3YKXTlUb1USRtdE98",
|
||||
"short_user_id": "3699731620",
|
||||
"user_unique_id": "dyv0itqbe6um",
|
||||
"user_signature": "",
|
||||
"nickname": "一直在心间",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_4aa9fa68099f4cc18fc7adedd07c0304.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163352
|
||||
},
|
||||
{
|
||||
"comment_id": "7348516169189802767",
|
||||
"create_time": 1710959781,
|
||||
"ip_location": "福建",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101394317255",
|
||||
"sec_uid": "MS4wLjABAAAA8v4MzJFsemQynRCPFAIZJFVyX-cAfHSQHmhtC74hS20",
|
||||
"short_user_id": "1130910983",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "永远的神:",
|
||||
"nickname": "锋喜哥",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oEMIg88EJWAQAIynjf6WAPhAnzICt1AOeACADN.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163376
|
||||
},
|
||||
{
|
||||
"comment_id": "7347296090947699510",
|
||||
"create_time": 1710675682,
|
||||
"ip_location": "浙江",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[666]腿长1.3",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "62404611261",
|
||||
"sec_uid": "MS4wLjABAAAAfnu_MiWgMUqKuana-yS-sICKvyv2709vG23cTwEmZqA",
|
||||
"short_user_id": "134947351",
|
||||
"user_unique_id": "x662001",
|
||||
"user_signature": "算翠屏应是",
|
||||
"nickname": "唐门仙兔唐玉兔",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_ooAAleraD8tbn4xA9bQCvXAXgCD9AHAQakeMIg.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163401
|
||||
},
|
||||
{
|
||||
"comment_id": "7346554378867999507",
|
||||
"create_time": 1710502988,
|
||||
"ip_location": "辽宁",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2925156618208511",
|
||||
"sec_uid": "MS4wLjABAAAADgUyEuA1W6232uZQZG44tTlGwNE0gcuGBPgK2Kg7_fVzB_6BFyTRI0eJgwQCZdid",
|
||||
"short_user_id": "95404934683",
|
||||
"user_unique_id": "95404934683",
|
||||
"user_signature": "🎵户外运动",
|
||||
"nickname": "95404934683",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_efd36d09f230456b9a3df50f498b7e07.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163427
|
||||
},
|
||||
{
|
||||
"comment_id": "7346404571172487945",
|
||||
"create_time": 1710468111,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我的天,性感",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "57703199744",
|
||||
"sec_uid": "MS4wLjABAAAAL5lHwF5wAoDT1BgfvLEorIu6r2psURoO3b6M-2makDU",
|
||||
"short_user_id": "1603858573",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "不变的心",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_cdf1c3ac37d941ef84a5e746ac06c864.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163451
|
||||
},
|
||||
{
|
||||
"comment_id": "7345855255088759604",
|
||||
"create_time": 1710340210,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[不失礼貌的微笑]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "61089149249",
|
||||
"sec_uid": "MS4wLjABAAAAzpC3CO0mtaUzCmUos5omx1w-biGISLOVj6y5bYGdH9g",
|
||||
"short_user_id": "18052393",
|
||||
"user_unique_id": "Qwer135246bnm",
|
||||
"user_signature": "2024得偿所愿",
|
||||
"nickname": "Suzy",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-avt-0015_d8c78aa48e2f8c7a5d4c550e035b56cf.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163477
|
||||
},
|
||||
{
|
||||
"comment_id": "7340999894028780299",
|
||||
"create_time": 1709209733,
|
||||
"ip_location": "天津",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "我心飞翔,真的受不了了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "105084544208",
|
||||
"sec_uid": "MS4wLjABAAAAgK8U7J7ixyptn2g7HBA10BQ4xkjITbHwIVjYRpARGO8",
|
||||
"short_user_id": "1604705311",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "@泡哥@",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_23fac0001b39c0384d3ac.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163503
|
||||
},
|
||||
{
|
||||
"comment_id": "7340991876780393252",
|
||||
"create_time": 1709207867,
|
||||
"ip_location": "陕西",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "这身材绝了",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1279449021560519",
|
||||
"sec_uid": "MS4wLjABAAAAKzkUzEsb11FLzEjhKpXZPDAmT1Z2hf_9XgnOASE2GJ5zhZtvgfjGDGVmZ52fSpvD",
|
||||
"short_user_id": "2822964570",
|
||||
"user_unique_id": "dygwlfj40oos",
|
||||
"user_signature": "兔年顶呱呱",
|
||||
"nickname": "伪装者",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oYRTLAbnEfQAeC7HBnA2Iw8De8ACAL6MnkBQEN.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163526
|
||||
},
|
||||
{
|
||||
"comment_id": "7340682225836639026",
|
||||
"create_time": 1709135772,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "935040464206829",
|
||||
"sec_uid": "MS4wLjABAAAA6vIlf-n1NuriFyvP5WjBiejuv4GjlXHEJouRErZV8tk",
|
||||
"short_user_id": "67303468912",
|
||||
"user_unique_id": "67303468912",
|
||||
"user_signature": "会打球🏀🏀🏀🏀🏀",
|
||||
"nickname": "宇宙超级无敌铠甲兽爆甲龙战士(Lxzc)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oMwBSGeo7InlfHAAzUAAbZDpJhQf7U4BGAParE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163553
|
||||
},
|
||||
{
|
||||
"comment_id": "7341295058623693578",
|
||||
"create_time": 1709278459,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "93108608825",
|
||||
"sec_uid": "MS4wLjABAAAAoPop-C-3rWjoNFh_NTVR1Vw6osVNBpt75lJuEtwOuWM",
|
||||
"short_user_id": "352232705",
|
||||
"user_unique_id": "shiguangfuku78",
|
||||
"user_signature": "抖音只为记录生活与工作中的点滴,留给将来的自己。请不喜勿喷,记录生活点滴,从生活中的每时每刻开始,加油,为了生活奋斗的人!",
|
||||
"nickname": "─━═馀甡辶罘苌哵粜蕪恙ζ",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oU4hEAcKPAdSBeMAHiw9B72EG1f2gfcABaMAQP.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163578
|
||||
},
|
||||
{
|
||||
"comment_id": "7340278125358236470",
|
||||
"create_time": 1709041684,
|
||||
"ip_location": "安徽",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "74994936526",
|
||||
"sec_uid": "MS4wLjABAAAA40moeKXe2bk-aWQQMVLhstwWPep7NJY3v54SYQ6QRmM",
|
||||
"short_user_id": "1676888273",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "肆酒",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_28649000684bafc15ee63.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163603
|
||||
},
|
||||
{
|
||||
"comment_id": "7338433874801885979",
|
||||
"create_time": 1708612285,
|
||||
"ip_location": "山东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[色][色][色]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "1093387740252957",
|
||||
"sec_uid": "MS4wLjABAAAAQbiwJi5LP_kBX6gY9TYLQXtAcJi88_NG4iIcPd0i9iZkmc4GOYnCMZWAvmhAD7-f",
|
||||
"short_user_id": "95072101855",
|
||||
"user_unique_id": "95072101855",
|
||||
"user_signature": "",
|
||||
"nickname": "彤宝招财",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813c001_oYvBXHefJInnYAAAUmAAbRD3LeQh7uYBEARlVE.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163628
|
||||
},
|
||||
{
|
||||
"comment_id": "7338338289915544359",
|
||||
"create_time": 1708590034,
|
||||
"ip_location": "贵州",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "无敌的美",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "2216228005087464",
|
||||
"sec_uid": "MS4wLjABAAAAM_FdXVIwr2ve9ShSC9qr1BzovxBluu1JdWDjZI84fFWMeeylSDVPUFEfNFaigrdn",
|
||||
"short_user_id": "3841612189",
|
||||
"user_unique_id": "dyzhrw6wtwuu",
|
||||
"user_signature": "",
|
||||
"nickname": "无别",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3797_2889309425.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163653
|
||||
},
|
||||
{
|
||||
"comment_id": "7337734968116216611",
|
||||
"create_time": 1708449565,
|
||||
"ip_location": "河北",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "千山万程,皆要平安!🌈",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "106758806543",
|
||||
"sec_uid": "MS4wLjABAAAAf7SpGJCxHelBzG6YhGSc3V0dvp6spxxkiZ6-yLpzukM",
|
||||
"short_user_id": "1740738704",
|
||||
"user_unique_id": "hx19870905",
|
||||
"user_signature": "心若亲近,言行必如流水般自然; 心若疏远,言行只如三秋之树般萧瑟。不怕身隔天涯,只怕心在南北。",
|
||||
"nickname": "(风生水起)",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_879ae829ec4d4d1fb7e370511c8133a8.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163681
|
||||
},
|
||||
{
|
||||
"comment_id": "7337343828690649897",
|
||||
"create_time": 1708358492,
|
||||
"ip_location": "云南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "@冷emm [舔屏]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "101685963058",
|
||||
"sec_uid": "MS4wLjABAAAAp4FF0ko8zgokHmyfVRdG8xYuW1tAnUul_mpIUgyxl4I",
|
||||
"short_user_id": "1160513408",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "我在晓1的直播间中奖了",
|
||||
"nickname": "冷冷月下",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_02205a9d5efb464d8f1d8c9e471d577a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163706
|
||||
},
|
||||
{
|
||||
"comment_id": "7339509516914017061",
|
||||
"create_time": 1708862727,
|
||||
"ip_location": "上海",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "[图片表情]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "97696971489",
|
||||
"sec_uid": "MS4wLjABAAAA-VqnRxY1PpKJ62iKri5ZZkPUe9oC2e5OZbi9ERicM24",
|
||||
"short_user_id": "876116507",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "",
|
||||
"nickname": "George陈🇨🇳",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_3144f0007332b79fc3456.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163730
|
||||
},
|
||||
{
|
||||
"comment_id": "7336229361294607131",
|
||||
"create_time": 1708099007,
|
||||
"ip_location": "广东",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "@[赞][赞][赞]",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "3116461288854557",
|
||||
"sec_uid": "MS4wLjABAAAAtfY6YDNZGZXCh8HYHjHHW3_s3Qt_rNSEoxqQNswJSvZ8UhipqoOs47D01vCY0dZH",
|
||||
"short_user_id": "74306771678",
|
||||
"user_unique_id": "74306771678",
|
||||
"user_signature": "朋友:@逐梦 \n喜欢的达人:@筱💐阿娟🧚",
|
||||
"nickname": "人生应该怎样度过🍀 ¹⁰¹³,潇潇",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/tos-cn-i-0813_oQYA0DhngeACvNW8bAl9AAAFEedH1nIYWQCC4C.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163759
|
||||
},
|
||||
{
|
||||
"comment_id": "7333640129384940340",
|
||||
"create_time": 1707496154,
|
||||
"ip_location": "河南",
|
||||
"aweme_id": "7270431418822446370",
|
||||
"content": "还是这套好",
|
||||
"is_author_digged": false,
|
||||
"is_folded": false,
|
||||
"is_hot": false,
|
||||
"user_buried": false,
|
||||
"user_digged": 0,
|
||||
"digg_count": "0",
|
||||
"user_id": "93480441470",
|
||||
"sec_uid": "MS4wLjABAAAAdAFZZM_IOYVCtGllj0kt8EgkAcbXcIdNRSJUvXipKv0",
|
||||
"short_user_id": "698115614",
|
||||
"user_unique_id": "",
|
||||
"user_signature": "本宝宝抖",
|
||||
"nickname": "我要买台旅行车",
|
||||
"avatar": "https://p3-pc.douyinpic.com/aweme/720x720/aweme-avatar/mosaic-legacy_2d1e400010c2e0fffe12a.jpeg?from=2956013662",
|
||||
"sub_comment_count": "0",
|
||||
"last_modify_ts": 1711644163785
|
||||
}
|
||||
]
|
||||