@nxgiang/tiktok-api 1.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/CHANGELOG.md +492 -0
  2. package/CODE_OF_CONDUCT.md +128 -0
  3. package/CONTRIBUTING.md +95 -0
  4. package/LICENSE +201 -0
  5. package/README.md +1663 -0
  6. package/bun.lock +367 -0
  7. package/helper/signature.js +390 -0
  8. package/helper/webmssdk.js +4586 -0
  9. package/helper/xbogus.js +563 -0
  10. package/install.sh +51 -0
  11. package/lib/cli/index.d.ts +2 -0
  12. package/lib/cli/index.js +809 -0
  13. package/lib/constants/api.d.ts +22 -0
  14. package/lib/constants/api.js +39 -0
  15. package/lib/constants/headers.d.ts +2 -0
  16. package/lib/constants/headers.js +5 -0
  17. package/lib/constants/index.d.ts +23 -0
  18. package/lib/constants/index.js +26 -0
  19. package/lib/constants/params.d.ts +19 -0
  20. package/lib/constants/params.js +531 -0
  21. package/lib/index.d.ts +93 -0
  22. package/lib/index.js +137 -0
  23. package/lib/lib/logger.d.ts +8 -0
  24. package/lib/lib/logger.js +25 -0
  25. package/lib/services/cookieManager.d.ts +10 -0
  26. package/lib/services/cookieManager.js +51 -0
  27. package/lib/services/downloadManager.d.ts +5 -0
  28. package/lib/services/downloadManager.js +188 -0
  29. package/lib/services/tiktokService.d.ts +14 -0
  30. package/lib/services/tiktokService.js +78 -0
  31. package/lib/types/common.d.ts +65 -0
  32. package/lib/types/common.js +2 -0
  33. package/lib/types/cookieManager.d.ts +13 -0
  34. package/lib/types/cookieManager.js +2 -0
  35. package/lib/types/downloader/musicaldownDownloader.d.ts +27 -0
  36. package/lib/types/downloader/musicaldownDownloader.js +2 -0
  37. package/lib/types/downloader/ssstikDownloader.d.ts +30 -0
  38. package/lib/types/downloader/ssstikDownloader.js +2 -0
  39. package/lib/types/downloader/tiktokApiDownloader.d.ts +38 -0
  40. package/lib/types/downloader/tiktokApiDownloader.js +2 -0
  41. package/lib/types/get/getCollection.d.ts +53 -0
  42. package/lib/types/get/getCollection.js +2 -0
  43. package/lib/types/get/getComments.d.ts +26 -0
  44. package/lib/types/get/getComments.js +2 -0
  45. package/lib/types/get/getMusicDetail.d.ts +49 -0
  46. package/lib/types/get/getMusicDetail.js +2 -0
  47. package/lib/types/get/getMusicVideos.d.ts +93 -0
  48. package/lib/types/get/getMusicVideos.js +2 -0
  49. package/lib/types/get/getPlaylist.d.ts +65 -0
  50. package/lib/types/get/getPlaylist.js +2 -0
  51. package/lib/types/get/getProfile.d.ts +71 -0
  52. package/lib/types/get/getProfile.js +2 -0
  53. package/lib/types/get/getTrendings.d.ts +61 -0
  54. package/lib/types/get/getTrendings.js +2 -0
  55. package/lib/types/get/getUserLiked.d.ts +90 -0
  56. package/lib/types/get/getUserLiked.js +2 -0
  57. package/lib/types/get/getUserPosts.d.ts +68 -0
  58. package/lib/types/get/getUserPosts.js +2 -0
  59. package/lib/types/get/getUserReposts.d.ts +104 -0
  60. package/lib/types/get/getUserReposts.js +2 -0
  61. package/lib/types/search/index.d.ts +15 -0
  62. package/lib/types/search/index.js +2 -0
  63. package/lib/types/search/liveSearch.d.ts +48 -0
  64. package/lib/types/search/liveSearch.js +2 -0
  65. package/lib/types/search/userSearch.d.ts +32 -0
  66. package/lib/types/search/userSearch.js +2 -0
  67. package/lib/types/search/videoSearch.d.ts +62 -0
  68. package/lib/types/search/videoSearch.js +2 -0
  69. package/lib/utils/downloader/musicaldownDownloader.d.ts +2 -0
  70. package/lib/utils/downloader/musicaldownDownloader.js +193 -0
  71. package/lib/utils/downloader/ssstikDownloader.d.ts +2 -0
  72. package/lib/utils/downloader/ssstikDownloader.js +177 -0
  73. package/lib/utils/downloader/tiktokAPIDownloader.d.ts +3 -0
  74. package/lib/utils/downloader/tiktokAPIDownloader.js +221 -0
  75. package/lib/utils/get/getCollection.d.ts +7 -0
  76. package/lib/utils/get/getCollection.js +113 -0
  77. package/lib/utils/get/getComments.d.ts +2 -0
  78. package/lib/utils/get/getComments.js +139 -0
  79. package/lib/utils/get/getMusicDetail.d.ts +2 -0
  80. package/lib/utils/get/getMusicDetail.js +68 -0
  81. package/lib/utils/get/getMusicVideos.d.ts +2 -0
  82. package/lib/utils/get/getMusicVideos.js +249 -0
  83. package/lib/utils/get/getPlaylist.d.ts +7 -0
  84. package/lib/utils/get/getPlaylist.js +115 -0
  85. package/lib/utils/get/getProfile.d.ts +2 -0
  86. package/lib/utils/get/getProfile.js +92 -0
  87. package/lib/utils/get/getTrendings.d.ts +7 -0
  88. package/lib/utils/get/getTrendings.js +120 -0
  89. package/lib/utils/get/getUserLiked.d.ts +2 -0
  90. package/lib/utils/get/getUserLiked.js +204 -0
  91. package/lib/utils/get/getUserPosts.d.ts +2 -0
  92. package/lib/utils/get/getUserPosts.js +199 -0
  93. package/lib/utils/get/getUserRepost.d.ts +2 -0
  94. package/lib/utils/get/getUserRepost.js +239 -0
  95. package/lib/utils/search/liveSearch.d.ts +2 -0
  96. package/lib/utils/search/liveSearch.js +99 -0
  97. package/lib/utils/search/userSearch.d.ts +2 -0
  98. package/lib/utils/search/userSearch.js +76 -0
  99. package/lib/utils/search/videoSearch.d.ts +2 -0
  100. package/lib/utils/search/videoSearch.js +140 -0
  101. package/lib/utils/urlExtractors.d.ts +3 -0
  102. package/lib/utils/urlExtractors.js +37 -0
  103. package/lib/utils/validator.d.ts +1 -0
  104. package/lib/utils/validator.js +13 -0
  105. package/package.json +60 -0
  106. package/test/collection-test.ts +73 -0
  107. package/test/comments-test.ts +54 -0
  108. package/test/downloader-v1-test.ts +49 -0
  109. package/test/downloader-v2-test.ts +47 -0
  110. package/test/downloader-v3-test.ts +35 -0
  111. package/test/music-detail-test.ts +97 -0
  112. package/test/music-videos-test.ts +86 -0
  113. package/test/playlist-test.ts +48 -0
  114. package/test/profile-test.ts +49 -0
  115. package/test/search-live-test.ts +42 -0
  116. package/test/search-user-test.ts +46 -0
  117. package/test/search-video-test.ts +53 -0
  118. package/test/trending-test.ts +128 -0
  119. package/test/userliked-test.ts +65 -0
  120. package/test/userposts-test.ts +56 -0
  121. package/test/userreposts-test.ts +57 -0
  122. package/tobyg74-tiktok-api-1.3.7.tgz +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,492 @@
1
+ # Changelog
2
+
3
+ History of changes to the project.
4
+
5
+ - [Version 1.0.0 - 16-03-2023](#version-100---16-03-2023)
6
+ - [Version 1.0.0a - 25-03-2023](#version-100a---25-03-2023)
7
+ - [Version 1.0.0b - 03-04-2023](#version-100b---03-04-2023)
8
+ - [Version 1.0.0c - 07-04-2023](#version-100c---07-04-2023)
9
+ - [Version 1.0.2 - 08-04-2023](#version-1002---08-04-2023)
10
+ - [Version 1.0.3 - 23-06-2023](#version-1003---23-06-2023)
11
+ - [Version 1.0.5 - 10-09-2023](#version-1005---10-09-2023)
12
+ - [Version 1.0.5a - 21-09-2023](#version-1005a---21-09-2023)
13
+ - [Version 1.0.6 - 07-10-2023](#version-1006---07-10-2023)
14
+ - [Version 1.0.7 - 08-10-2023](#version-1007---08-10-2023)
15
+ - [Version 1.0.9 - 12-10-2023](#version-1009---12-10-2023)
16
+ - [Version 1.0.10 - 14-10-2023](#version-10010---14-10-2023)
17
+ - [Version 1.0.11 - 06-11-2023](#version-10011---06-11-2023)
18
+ - [Version 1.0.13 - 11-11-2023](#version-10013---11-11-2023)
19
+ - [Version 1.0.14 - 28-02-2024](#version-10014---28-02-2024)
20
+ - [Version 1.0.14a - 22-03-2024](#version-10014a---22-03-2024)
21
+ - [Version 1.0.16 - 24-03-2024](#version-10016---24-03-2024)
22
+ - [Version 1.1.0 - 29-03-2024](#version-110---29-03-2024)
23
+ - [Version 1.1.1 - 30-03-2024](#version-111---30-03-2024)
24
+ - [Version 1.1.1a - 06-04-2024](#version-111a---06-04-2024)
25
+ - [Version 1.1.4 - 20-04-2024](#version-114---20-04-2024)
26
+ - [Version 1.1.4a - 30-04-2024](#version-114a---30-04-2024)
27
+ - [Version 1.1.4b - 19-05-2024](#version-114b---19-05-2024)
28
+ - [Version 1.1.6 - 07-07-2024](#version-116---07-07-2024)
29
+ - [Version 1.1.7 - 08-07-2024](#version-117---08-07-2024)
30
+ - [Version 1.1.8 - 09-07-2024](#version-118---09-07-2024)
31
+ - [Version 1.1.9 - 10-07-2024](#version-119---10-07-2024)
32
+ - [Version 1.1.9a - 05-09-2024](#version-119a---05-09-2024)
33
+ - [Version 1.2.0 - 11-10-2024](#version-120---11-10-2024)
34
+ - [Version 1.2.1 - 06-11-2024](#version-121---06-11-2024)
35
+ - [Version 1.2.2 - 07-11-2024](#version-122---07-11-2024)
36
+ - [Version 1.2.3 - 07-02-2025](#version-123---07-02-2025)
37
+ - [Version 1.2.7 - 03-03-2025](#version-127---03-03-2025)
38
+ - [Version 1.3.0 - 05-03-2025](#version-130---05-03-2025)
39
+ - [Version 1.3.1 - 13-05-2025](#version-131---13-05-2025)
40
+ - [Version 1.3.2 - 03-06-2025](#version-132---03-06-2025)
41
+ - [Version 1.3.3 - 12-07-2025](#version-133---12-07-2025)
42
+ - [Version 1.3.4 - 08-08-2025](#version-134---08-08-2025)
43
+ - [Version 1.3.5 - 13-09-2025](#version-135---13-09-2025)
44
+ - [Version 1.3.6 - 17-09-2025](#version-136---17-09-2025)
45
+ - [Version 1.3.7 - 27-10-2025](#version-137---27-10-2025)
46
+
47
+ ## Version 1.0.0 - 16-03-2023
48
+
49
+ ### Added
50
+
51
+ - Initialize the downloader function [fc860d5](https://github.com/TobyG74/tiktok-api-dl/commit/fc860d5cc0b617572d6b8138cb2bd52cfa82254c)
52
+
53
+ ## Version 1.0.0a - 25-03-2023
54
+
55
+ ### Fixed
56
+
57
+ - Fixing code to handle errors [e683e6f](https://github.com/TobyG74/tiktok-api-dl/commit/e683e6fc62ef8e65a5dd1b9f64751a7b30d7ab99)
58
+
59
+ ## Version 1.0.0b - 03-04-2023
60
+
61
+ ### Added
62
+
63
+ - Add Tiktok Profile search using username [1d29989](https://github.com/TobyG74/tiktok-api-dl/commit/1d299893632e613558fa264743c122926a9fbc64)
64
+ - Merge pull request #1 from zennn08/master [1687f82](https://github.com/TobyG74/tiktok-api-dl/commit/1687f82aa32004e94160c53e7568a4a81c320fde)
65
+
66
+ ### Changed
67
+
68
+ - Migrating to Typescript [562f063](https://github.com/TobyG74/tiktok-api-dl/commit/562f063dffdb8e5217f24031cd58ff9910f8fd65)
69
+ - Update README.md [7594ba0](https://github.com/TobyG74/tiktok-api-dl/commit/7594ba06c684ff7e2611c72b9500081671832835)
70
+
71
+ ## Version 1.0.0c - 07-04-2023
72
+
73
+ ### Fixed
74
+
75
+ - Changing issue handling to be more consistent [b48d82b](https://github.com/TobyG74/tiktok-api-dl/commit/b48d82bf8d3b91147a79ce4bbbb6cc3fa48b327b)
76
+
77
+ ## Version 1.0.0c - 07-04-2023
78
+
79
+ ### Fixed
80
+
81
+ - Changing issue handling to be more consistent [b48d82b](https://github.com/TobyG74/tiktok-api-dl/commit/b48d82bf8d3b91147a79ce4bbbb6cc3fa48b327b)
82
+
83
+ ## Version 1.0.2 - 08-04-2023
84
+
85
+ ### Changed
86
+
87
+ - Changing the code to camelCase [a3f52ff](https://github.com/TobyG74/tiktok-api-dl/commit/a3f52ff459879cb375e9879a815ac3ba843f8c81)
88
+
89
+ ## Version 1.0.3 - 23-06-2023
90
+
91
+ ### Added
92
+
93
+ - Added Cover & Dynamic Cover to the response [2f14b9a](https://github.com/TobyG74/tiktok-api-dl/commit/2f14b9a357c824c4994e85403dc65b1d9d95ca74)
94
+
95
+ ### Changed
96
+
97
+ - Merge pull request #3 from 3IMAD69/master [cfa4385](https://github.com/TobyG74/tiktok-api-dl/commit/cfa4385be565b831736eeffcdc8810511eab0317)
98
+ - Update README.md [97250c5](https://github.com/TobyG74/tiktok-api-dl/commit/97250c5da394dfb758d4ce4e9b48a146a7198736)
99
+
100
+ ## Version 1.0.5 - 10-09-2023
101
+
102
+ ### Added
103
+
104
+ - Tidying up the types [c756996](https://github.com/TobyG74/tiktok-api-dl/commit/c7569961e2d800ad3598a0072926ac732293fe7f)
105
+ - Implementing types into code [697c4f5](https://github.com/TobyG74/tiktok-api-dl/commit/697c4f5f7c97d05f56ea8b1bc0f30b1dda30d627)
106
+
107
+ ## Version 1.0.5a - 21-09-2023
108
+
109
+ ### Added
110
+
111
+ - ignore bun.lockb [10b76cf](https://github.com/TobyG74/tiktok-api-dl/commit/10b76cf34f0a2c55dafc0d9b080697b0a199bfe4)
112
+
113
+ ### Fixed
114
+
115
+ - Fix code [6d64810](https://github.com/TobyG74/tiktok-api-dl/commit/6d64810aed4a2565fe6b55103f805900f9606ca5)
116
+
117
+ ## Version 1.0.6 - 07-10-2023
118
+
119
+ ### Added
120
+
121
+ - Splitting multiple files for easy reading [300530a](https://github.com/TobyG74/tiktok-api-dl/commit/300530a161f8a880a9e4601dc3888adad23e88dc)
122
+
123
+ ### Changed
124
+
125
+ - Update README.md with improved formatting and content [3bedf83](https://github.com/TobyG74/tiktok-api-dl/commit/3bedf837c24759866ef58d11a840e27de840236c)
126
+
127
+ ## Version 1.0.7 - 08-10-2023
128
+
129
+ ### Added
130
+
131
+ - Added Tiktok Downloader V2 Documentation [246c6bd](https://github.com/TobyG74/tiktok-api-dl/commit/246c6bdb30a013836a42fbfd995557282bafe3de)
132
+ - Added Types for Tiktok Downloader V2 & Tiktok Stalk Response [f7f6d37](https://github.com/TobyG74/tiktok-api-dl/commit/f7f6d3776aa9807c8c4d66a9310dde72ef62327c)
133
+
134
+ ## Version 1.0.9 - 12-10-2023
135
+
136
+ ### Added
137
+
138
+ - Adding multiple types and moving the API url to the api folder [e649860](https://github.com/TobyG74/tiktok-api-dl/commit/e649860c785f7601fd4ec7f58d63e274b23934db)
139
+
140
+ ### Changed
141
+
142
+ - Rename files and types of ssstik downloader [8bccf19](https://github.com/TobyG74/tiktok-api-dl/commit/8bccf19644aa42638e81a1340a112cbf0b07fdeb)
143
+
144
+ ## Version 1.0.10 - 14-10-2023
145
+
146
+ ### Added
147
+
148
+ - Added Tiktok Downloader V3 Documentation [6f18c51](https://github.com/TobyG74/tiktok-api-dl/commit/6f18c5112ecff9b514e40a4da73a8a46ec4e334f)
149
+ - Adding Musicaldown as Tiktok Downloader V3 [f5849a6](https://github.com/TobyG74/tiktok-api-dl/commit/f5849a600fa066bd8a1b511fc0bb9b9d5da4a988)
150
+ - Merge pull request #11 from nugraizy/master [d6d44e9](https://github.com/TobyG74/tiktok-api-dl/commit/d6d44e98072dd8bd2cb992a9dea76fcc4c56a3eb)
151
+
152
+ ### Changed
153
+
154
+ - Update package.json [cef0abb](https://github.com/TobyG74/tiktok-api-dl/commit/cef0abbbc95573c8c671ab05577bd3ddcfea5e80)
155
+ - Update README.md [363b0a9](https://github.com/TobyG74/tiktok-api-dl/commit/363b0a9f25f2dedbe5b62574e19fdc69ecf7f71d)
156
+
157
+ ### Fixed
158
+
159
+ - Fix Tiktok Download V1 method where some of urls does not appear on feed endpoint [8b00a9a](https://github.com/TobyG74/tiktok-api-dl/commit/8b00a9adb49dfa0bd3dbb457179ce018ff81dd22)
160
+ - Fixed undefined response on object url author [07fa887](https://github.com/TobyG74/tiktok-api-dl/commit/07fa887f9161efe7a82ad0f2c9f05777635f21e4)
161
+ - Fix Typo [5a92162](https://github.com/TobyG74/tiktok-api-dl/commit/5a921624e2f6a4a847d3c7f6545c71099ab47056)
162
+
163
+ ## Version 1.0.11 - 06-11-2023
164
+
165
+ ### Added
166
+
167
+ - Adding multiple types to the code [4484986](https://github.com/TobyG74/tiktok-api-dl/commit/4484986faef332e629b29bdb41ac3cbab13c703c)
168
+
169
+ ## Version 1.0.13 - 11-11-2023
170
+
171
+ ### Changed
172
+
173
+ - Update README.md [fce7b8e](https://github.com/TobyG74/tiktok-api-dl/commit/c20191dc4d186b6ec6c4506327e1aa157594dee1)
174
+
175
+ ### Fixed
176
+
177
+ - Fix Downloader Types [e42d408](https://github.com/TobyG74/tiktok-api-dl/commit/e42d40881e0faafbc8cccb2dbd7331f88f5d4ece)
178
+ - Fix Response from TiktokStalk [e63f8c6](https://github.com/TobyG74/tiktok-api-dl/commit/e63f8c674d84571da26aacae285254f3c895ec45)
179
+
180
+ ## Version 1.0.14 - 28-02-2024
181
+
182
+ ### Changed
183
+
184
+ - Change the interface to type [c7ab3ca](https://github.com/TobyG74/tiktok-api-dl/commit/c7ab3ca2da52904bcaa4b14b45ef473d1b46e3ef)
185
+ - Update README.md [028038c](https://github.com/TobyG74/tiktok-api-dl/commit/028038c81c1ea10c2b90da7a92ea5bc76bbb65ed)
186
+
187
+ ### Fixed
188
+
189
+ - Fix Switch Types [66a89cd](https://github.com/TobyG74/tiktok-api-dl/commit/66a89cdad2057c54d2a64f89ceeab17e968c82ee)
190
+
191
+ ## Version 1.0.14a - 22-03-2024
192
+
193
+ ### Added
194
+
195
+ - Merge pull request #15 from zennn08/master [f3b3b3b](https://github.com/TobyG74/tiktok-api-dl/commit/c698ba0c88138cb8cb24841e82dee5ab041ba45e)
196
+
197
+ ### Fixed
198
+
199
+ - Images Slide undefined in ssstik [2d598b9](https://github.com/TobyG74/tiktok-api-dl/commit/2d598b9f1c3c728be747aa1ec3cac46c45939bc8)
200
+
201
+ ## Version 1.0.16 - 24-03-2024
202
+
203
+ ### Added
204
+
205
+ - Added responseParser types [92d2e7a](https://github.com/TobyG74/tiktok-api-dl/commit/92d2e7ad94b8ace6aeb1b8f64d20027c307b0e41)
206
+ - Added asyncRetry to prevent empty data [5851588](https://github.com/TobyG74/tiktok-api-dl/commit/585158817c9bf4a6883c60d7a9f54b495c94247f)
207
+
208
+ ### Changed
209
+
210
+ - Changing the Tiktok API (tiktokv) domain [031051a](https://github.com/TobyG74/tiktok-api-dl/commit/031051a480501e8320508b5ff6162830200ff3d1)
211
+
212
+ ## Version 1.1.0 - 29-03-2024
213
+
214
+ ### Added
215
+
216
+ - Added Tiktok Search User Documentation [4a816a8](https://github.com/TobyG74/tiktok-api-dl/commit/4a816a842e485075d04db02fc9dcbbe29415ddfa)
217
+ - Added Tiktok Search User [722f257](https://github.com/TobyG74/tiktok-api-dl/commit/722f257b771dd9b686c8bb1db6d4c21d32e3b7b9)
218
+ - Added Contants Folder & Variable [27bee06](https://github.com/TobyG74/tiktok-api-dl/commit/27bee061fa669c07e1cd87c15290234f4640a6c9)
219
+ - Added Types for Tiktok Search User [7b988d7](https://github.com/TobyG74/tiktok-api-dl/commit/7b988d7f12731d1a9bf4b11b89217ac7b89049b7)
220
+
221
+ ### Changed
222
+
223
+ - Change to default export [f5ba430](https://github.com/TobyG74/tiktok-api-dl/commit/f5ba43073f67ace72936b6973597d1b20df8c759)
224
+ - Moves the Types Folder [2e15d88](https://github.com/TobyG74/tiktok-api-dl/commit/2e15d88758a793ff5f099539de067c4f1c51f7b4)
225
+ - Update README.md [4368966](https://github.com/TobyG74/tiktok-api-dl/commit/43689660887267fc3983121b710e826f7986138d)
226
+
227
+ ### Fixed
228
+
229
+ - Tiktok Downloader Response [8fd77ea](https://github.com/TobyG74/tiktok-api-dl/commit/8fd77ea2b222e125aba2aef6ccb79e4ccc455a49)
230
+
231
+ ## Version 1.1.1 - 30-03-2024
232
+
233
+ ### Added
234
+
235
+ - Added page as a replacement for the cursor [5d7b538](https://github.com/TobyG74/tiktok-api-dl/commit/5d7b5388dc5e7e4cbe18de2ac21d3c2cc4e97fd9)
236
+
237
+ ### Fixed
238
+
239
+ - Fixed exports on tiktok objects [5d7f3db](https://github.com/TobyG74/tiktok-api-dl/commit/5d7f3dbdff97dcc469425d015df9bf7cca228b6b)
240
+
241
+ ## Version 1.1.1a - 06-04-2024
242
+
243
+ ### Fixed
244
+
245
+ - Fixed regex validate tiktok url [f00fa49](https://github.com/TobyG74/tiktok-api-dl/commit/f00fa49394eab24b9c6af61e38796e9d59038841)
246
+
247
+ ## Version 1.1.4 - 20-04-2024
248
+
249
+ ### Added
250
+
251
+ - Added postLimit Options [c1be62e](https://github.com/TobyG74/tiktok-api-dl/commit/c1be62ea4a1fc5fa2f3383b39e8d4c988f3b2600)
252
+ - Restrict too many data requests [383570e](https://github.com/TobyG74/tiktok-api-dl/commit/383570eb5872ae900b3d180d086b8e706c13412e)
253
+
254
+ ## Version 1.1.4a - 30-04-2024
255
+
256
+ ### Added
257
+
258
+ - Added lite subdomain and Merge pull request #19 from Vasolix/master [0dd7b1f](https://github.com/TobyG74/tiktok-api-dl/commit/0dd7b1f0b6fbcd760239e5617e67ba8d679c89db)
259
+
260
+ ## Version 1.1.4b - 19-05-2024
261
+
262
+ ### Added
263
+
264
+ - Create LISENCE [d8d4666](https://github.com/TobyG74/tiktok-api-dl/commit/d8d4666b48b2de3cf53a452bc0f3eea0b0cc3a05)
265
+
266
+ ## Version 1.1.6 - 07-07-2024
267
+
268
+ ### Added
269
+
270
+ - Create CODE_OF_CONDUCT.md [ab69eb8](https://github.com/TobyG74/tiktok-api-dl/commit/ab69eb8f3078449b6e3da683f6f6db9a6104045f)
271
+ - Update contributing.md [20ed003](https://github.com/TobyG74/tiktok-api-dl/commit/20ed003379e36d76326ecdce1bc983b619645149)
272
+ - Added Photo URL to Regex [5feae69](https://github.com/TobyG74/tiktok-api-dl/commit/5feae691d4f8cac972010926879300e720a95e0e)
273
+
274
+ ## Changed
275
+
276
+ - Update README.md [6aca3f4](https://github.com/TobyG74/tiktok-api-dl/commit/6aca3f4d05c819ba66e65872ae45341e4605d5b9)
277
+
278
+ ### Fixed
279
+
280
+ - Fixed SSSTik Response Undefined [9e4b697](https://github.com/TobyG74/tiktok-api-dl/commit/9e4b697a27682dbb84ea5222fbdd4daaa99bddc3)
281
+ - Fixed Error in Tiktok Downloader V1 [3783799](https://github.com/TobyG74/tiktok-api-dl/commit/3783799bd3478f92dace7733abe9e9ba6b953183)
282
+
283
+ ## Version 1.1.7 - 08-07-2024
284
+
285
+ ### Added
286
+
287
+ - Added Tiktok Search Live Documentation [a79fa90](https://github.com/TobyG74/tiktok-api-dl/commit/a79fa9017bf1ecb0f61284ac7768ac2e47177631)
288
+ - Added Tiktok Search Live [f7d9b1b](https://github.com/TobyG74/tiktok-api-dl/commit/f7d9b1be486030e50b105935af828b217f96cb9e)
289
+
290
+ ### Changed
291
+
292
+ - Update README.md [c68cafd](https://github.com/TobyG74/tiktok-api-dl/commit/c68cafdc9cc7909caf94e8b9361b1015bec002b7)
293
+
294
+ ## Version 1.1.8 - 09-07-2024
295
+
296
+ ### Added
297
+
298
+ - Added Proxy Options Documentation [b74828d](https://github.com/TobyG74/tiktok-api-dl/commit/b74828d6e38ca2d0e1b2d414e1439f03a4a8a3e9)
299
+ - Added Proxy Options [75cf47c](https://github.com/TobyG74/tiktok-api-dl/commit/75cf47c27ad3329cf448d2d9c15e25e87a1a1af8)
300
+
301
+ ## Version 1.1.9 - 10-07-2024
302
+
303
+ ### Changed
304
+
305
+ - Updated .prettierrc and added some types [b57953b](https://github.com/TobyG74/tiktok-api-dl/commit/b57953b05416847c1d836809d7060b0ba49cff49)
306
+
307
+ ### Fixed
308
+
309
+ - Fixed Musicaldown Response [824f853](https://github.com/TobyG74/tiktok-api-dl/commit/824f853f9bab78f8bafdd72a2000b108cfb924f3)
310
+
311
+ ## Version 1.1.9a - 05-09-2024
312
+
313
+ ### Added
314
+
315
+ - Merge pull request #28 from aquariuscool/master [0dd7b1f](https://github.com/TobyG74/tiktok-api-dl/commit/0dd7b1f0b6fbcd760239e5617e67ba8d679c89db)
316
+
317
+ ## Version 1.2.0 - 11-10-2024
318
+
319
+ ### Changed
320
+
321
+ - Update README.md [c53f801](https://github.com/TobyG74/tiktok-api-dl/commit/c53f80141f95b882a8c305132ef7674988a26ed5)
322
+
323
+ ### Fixed
324
+
325
+ - Fixing Errors in Musicaldown and Undefined Response in SSSTik [8f5ddd8](https://github.com/TobyG74/tiktok-api-dl/commit/8f5ddd814c36e8fda965b279ea8f2e3d162fe6f3)
326
+
327
+ ## Version 1.2.1 - 06-11-2024
328
+
329
+ ### Added
330
+
331
+ - Add yarn-lock.json to .npmignore & .gitignore [353c37c](https://github.com/TobyG74/tiktok-api-dl/commit/353c37ccbc3d2d9ba7c40462630bda00cf071994)
332
+ - Add Xbogus as a SearchUser params [82fbdb2](https://github.com/TobyG74/tiktok-api-dl/commit/82fbdb24c2f59dc5f98f24f3c7fbd685e3a09d00)
333
+ - Adding xbogus as a helper function to generate xbogus tokens [903fa88](https://github.com/TobyG74/tiktok-api-dl/commit/903fa884813d36efc3091cc589a4b593031d9033)
334
+ - Adding the generate url xbogus function [4f506c1](https://github.com/TobyG74/tiktok-api-dl/commit/4f506c16b89eb069c36d817fe023275df4892e4d)
335
+
336
+ ### Changed
337
+
338
+ - Update README.md [0fd80db](https://github.com/TobyG74/tiktok-api-dl/commit/0fd80dbb3c320cea19bf420f4cf2da1b04e474f6)
339
+ - Change TikTok API to Get Better Video Quality [0667116](https://github.com/TobyG74/tiktok-api-dl/commit/066711634b434a105c19314903806b482b3d11f9)
340
+
341
+ ### Fixed
342
+
343
+ - Fixed SSSTik error when downloading Tiktok Story [978afeb](https://github.com/TobyG74/tiktok-api-dl/commit/978afeb713346e3e8db697d6bf189a6271507a12)
344
+
345
+ ### Version 1.2.2 - 07-11-2024
346
+
347
+ ### Added
348
+
349
+ - Added Tiktok Get Comment [3bcbecb](https://github.com/TobyG74/tiktok-api-dl/commit/3bcbecbb6e2d772ce8ae396266d7e02a50b41931)
350
+ - Added Tiktok Get Comment Documentation [46acd69](https://github.com/TobyG74/tiktok-api-dl/commit/46acd692e373b5a5c69f8a6c06a0dfae5e834773)
351
+ - Added `page` & `totalResults` to Tiktok Search User & Live Response [1bae63d](https://github.com/TobyG74/tiktok-api-dl/commit/1bae63d2e82f8d80c8b307e189209e488a76c266)
352
+ - Added `page` & `totalResults` to Tiktok Search User & Live Documentation [27d69c2](https://github.com/TobyG74/tiktok-api-dl/commit/27d69c28e7b7a394d1b0fc50fd801ba0e983856e)
353
+ - Added `isTurnOffComment` to Tiktok Downloader V1 Response [03a081d](https://github.com/TobyG74/tiktok-api-dl/commit/03a081d87b60b8431ce61aa076be87c5f33951d0)
354
+
355
+ ### Version 1.2.3 - 07-02-2025
356
+
357
+ ### Added
358
+
359
+ - Update README.md [24e69df](https://github.com/TobyG74/tiktok-api-dl/commit/24e69dfe3a107ff81e4750c39b7d3401ea201f07)
360
+
361
+ ### Fixed
362
+
363
+ - Fixed Tiktok User Search (Error Length) [990a50f](https://github.com/TobyG74/tiktok-api-dl/commit/990a50f98c41d0627908de43466e60078825bc68)
364
+ - Fixed Tiktok Live Search (Error Length) [80cbe6d](https://github.com/TobyG74/tiktok-api-dl/commit/80cbe6d5e9bc5a3717acf658b57801aef9839de4)
365
+ - Fixed Requests Take Too Long When Taking Comments & Posts [990a50f](https://github.com/TobyG74/tiktok-api-dl/commit/990a50f98c41d0627908de43466e60078825bc68)
366
+
367
+ ## Version 1.2.7 - 03-03-2025
368
+
369
+ ### Added
370
+
371
+ - Added CLI Commands for Tiktok Downloader V1, V2, V3, Stalk, Search User, Search Live, & Get Comments [545734d](https://github.com/TobyG74/tiktok-api-dl/commit/545734d86554aadea2467be51950cdda1093d294)
372
+ - Added CLI Commands Documentation [3b3827b](https://github.com/TobyG74/tiktok-api-dl/commit/3b3827b30f9cefa022c65daf732f1b0b7dd412d8)
373
+ - Added CookieManager for managing cookies [1ed22e9](https://github.com/TobyG74/tiktok-api-dl/commit/1ed22e9b1055a3ddfdfd8a66f7bcf0ab351b250d)
374
+ - Added install.sh for installing the library [7249bdb](https://github.com/TobyG74/tiktok-api-dl/commit/7249bdb4ecc5eeca529f4f931184cf69d0ccdb6d)
375
+ - Added Logger for CLI [288b347](https://github.com/TobyG74/tiktok-api-dl/commit/288b347d5abbb10f5ca880880fdd7167eda3cd1d)
376
+
377
+ ### Fixed
378
+
379
+ - Fixed Get Posts & Get Comments Limit [635738a](https://github.com/TobyG74/tiktok-api-dl/commit/635738a9c3cc2ddd359047861d5e49e962aeed5e)
380
+ - Fixed Error when downloading Images via Musicaldown [97b261c](https://github.com/TobyG74/tiktok-api-dl/commit/97b261ca8d0da14c0dc0fc0a037b7332e43d7c6e)
381
+ - Fixed Error Live Types [ebe9ff4](https://github.com/TobyG74/tiktok-api-dl/commit/ebe9ff4c2257fa9ae6653c8b82d1e03755a40a25)
382
+ - Fixed Error Cookie Manager [e23952a](https://github.com/TobyG74/tiktok-api-dl/commit/e23952abe35854aff358e0948e4461a7a0bdd9db)
383
+
384
+ ### Changed
385
+
386
+ - Tiktok Stalk doesn't use cookies anymore [c718c93](https://github.com/TobyG74/tiktok-api-dl/commit/c718c93416cfdd52d4d0932d335c9f7b3c2bce08)
387
+
388
+ ## Version 1.3.0 - 05-03-2025
389
+
390
+ ### Added
391
+
392
+ - Added New Helper File [signature](https://github.com/TobyG74/tiktok-api-dl/blob/master/helper/signature.js) & [webmssdk](https://github.com/TobyG74/tiktok-api-dl/blob/master/helper/webmssdk.js) [ecbba4e](https://github.com/TobyG74/tiktok-api-dl/commit/ecbba4e1f09986128f340bfcee33f4c27baf363f)
393
+ - Add Documentation for Tiktok User Favorite Videos and Tiktok User Posts [aecd17d](https://github.com/TobyG74/tiktok-api-dl/commit/aecd17d1dbc3298aef51f484741730aa1bcc4fe8)
394
+ - Add New Feature (Tiktok Get User Liked Videos, User Posts & Search Videos) [973a94e](https://github.com/TobyG74/tiktok-api-dl/commit/973a94e)
395
+
396
+ ### Fixed
397
+
398
+ - Fixed Naming Similarities in Types [973a94e](https://github.com/TobyG74/tiktok-api-dl/commit/973a94e51761fbd61e37bebb1644c60c15f93dfe)
399
+ - Fixed Error When Searching for a Video After Page 1 [050bdf4](https://github.com/TobyG74/tiktok-api-dl/commit/050bdf4fa2926989445af6d0f1349805e630b223)
400
+
401
+ ## Version 1.3.1 - 13-05-2025
402
+
403
+ ### Added
404
+
405
+ - Adding a validator for the Cookie [a19dd9c](https://github.com/TobyG74/tiktok-api-dl/commit/a19dd9c062b98f54ccd0cc5343eea2bdc0db4245)
406
+
407
+ ### Fixed
408
+
409
+ - Fix the types in options that are not visible [96b60ed](https://github.com/TobyG74/tiktok-api-dl/commit/96b60ed55a6483b9c8fb378895f608c15ff86c33)
410
+ - Fix the object result in CLI [fb72a4f](https://github.com/TobyG74/tiktok-api-dl/commit/fb72a4f74ada0e6503dd9978bf538f809ec7f2fd)
411
+ - Fixing Several Types [4dda8da](https://github.com/TobyG74/tiktok-api-dl/commit/4dda8daf85149b110d3e965fe67b414099b040de)
412
+ - Applying New Types [cb64f05](https://github.com/TobyG74/tiktok-api-dl/commit/cb64f0585aef011bb6ae5ff7fe907526d37e0067)
413
+ - Fix the Request Errors and Returning Undefined [80b5cbd](https://github.com/TobyG74/tiktok-api-dl/commit/80b5cbdc1d8af1fc45a2d94b818d0fe38d8060e9)
414
+
415
+ ### Changed
416
+
417
+ - Update Documentation [4260ea6](https://github.com/TobyG74/tiktok-api-dl/commit/4260ea653ee50569f898cc0653cb35e4557992a9)
418
+
419
+ ## Version 1.3.2 - 03-06-2025
420
+
421
+ ### Added
422
+
423
+ - Add Tiktok Collection [5bd743a](https://github.com/TobyG74/tiktok-api-dl/pull/42/commits/5bd743a888cfafe932f083a2f887dbdd98e99d0c)
424
+ - Add Tiktok Collection Documentation [a37640e](https://github.com/TobyG74/tiktok-api-dl/pull/42/commits/a37640e332a43827bca8599881c931097d07256e)
425
+ - Add Tiktok Collection Types [baa8fa2](https://github.com/TobyG74/tiktok-api-dl/pull/42/commits/baa8fa2cc8d1bcc7aabc7fdef5a93677fed10be5)
426
+ - Add Tiktok Playlist [2fa9e6f](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/2fa9e6fef414c2825cf3072655998e1322210062)
427
+ - Add Tiktok Playlist Documentation [d0b1f2c](https://github.com/TobyG74/tiktok-api-dl/commit/db1686fc9b0480402db7bd6bd0c41f899ff56668)
428
+ - Add a New CLI Downloader for Tiktok Collection & Playlist [ae53775](https://github.com/TobyG74/tiktok-api-dl/commit/ae537757d8fa274e52060f445d4822c617f9ac93)
429
+ - Add Some Test Files [4f7cd9f](https://github.com/TobyG74/tiktok-api-dl/commit/4f7cd9f083d1798c18a0cad823b2e9b224893f14)
430
+
431
+ ### Fixed
432
+
433
+ - Repair Musicaldown Broken Logics [732c0d4](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/732c0d4c146d7ed743b5902fbd392717e2df5692)
434
+ - Fix Downloader Types [1ad6d8b](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/1ad6d8baea7c2ac45ffc6cccd089ce193d17f491)
435
+ - Fix Handle Downloader Function [a56bc8c](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/a56bc8c9d9bedd42305c92a7bb15edb3ecad390a)
436
+ - Fix Duplicate Types [9d53637](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/9d53637ac267568fc0f2d3c4556dd2367b4cbf19)
437
+
438
+ ### Changed
439
+
440
+ - Moving the Function to the Function Owner's File [c83e329](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/c83e329f27bd744dd2274604e15e10ec2264e083)
441
+ - Removing Cookie Options on Tiktok Stalk User [c7af8d5](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/c7af8d53a99fbbf1bda453a9ee1293bfb7ac6cf4)
442
+
443
+ ## Version 1.3.3 - 12-07-2025
444
+
445
+ ### Added
446
+
447
+ - Add Tiktok Get User Reposts [9bab4ad](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/9bab4ad652058cf3cd9c7cc79a94d12a3606c200)
448
+ - Add Tiktok Get User Reposts Documentation [d71a970](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/d71a970977ab7413450092b65841eb897a25e232)
449
+
450
+ ### Fixed
451
+
452
+ - Fix the getUserPost error when the data exceeds 35 [259c9a1](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/259c9a178996aee9bcd3d10a5f84dabbaf6f3dfb)
453
+
454
+ ## Version 1.3.4 - 08-08-2025
455
+
456
+ ### Added
457
+
458
+ - Add StatsV2 For Tiktok Profile [3479514](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/3479514054482f87454805cc2cf5a52ba422d61a)
459
+ - Add StatsV2 Documentation [3b640e2](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/3b640e23e183cb7d48b4fa35b61d20307d7a5555)
460
+
461
+ ### Fixed
462
+
463
+ - Fixing errors in the search feature [3d341c7](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/3d341c7fa15dabf8f49400e634e164ebf73ba3dd)
464
+
465
+ ## Version 1.3.5 - 13-09-2025
466
+
467
+ ### Added
468
+
469
+ - Add Tiktok Trending [5e7b3b4](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/5e7b3b4181275b856d8de8a002d8c622fa4412e8)
470
+ - Add Tiktok Trending Documentation [16a8e5b](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/16a8e5b85709f63a99ad38747e0b1e487aa05cd9)
471
+
472
+ ### Fixed
473
+
474
+ - Fix Error Tiktok Downloader V3 When Getting Videos [5e7b3b4](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/5e7b3b4181275b856d8de8a002d8c622fa4412e8)
475
+
476
+ ## Version 1.3.6 - 17-09-2025
477
+
478
+ ### Added
479
+
480
+ - Add Tiktok Get Video by Music ID [1d09e1b](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/1d09e1b4b89ddda8f0a2667183cca0f31b91d7e1)
481
+ - Add Tiktok Get Video by Music ID Documentation [f4c59d5](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/f4c59d5467a46a62fa57a0a6e56149caf2d05ec0)
482
+
483
+ ### Changed
484
+
485
+ - Change the Tiktok Downloader V3 URL [806fcda](https://github.com/TobyG74/tiktok-api-dl/commit/806fcda2d3604202ca353ab96b18af5fa85a1350)
486
+
487
+ ## Version 1.3.7 - 27-10-2025
488
+
489
+ ### Added
490
+
491
+ - Add Tiktok Get Video Detail [a2b9bd6](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/a2b9bd6b3149963c53db824a646cc209b7060c14)
492
+ - Add Tiktok Get Video Detail Documentation [9ddf021](https://github.com/TobyG74/tiktok-api-dl/pull/45/commits/9ddf021fe7b7d4ef8baf3c64561af5034a2d673c)
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ .
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.