Skip to content

Commit

Permalink
20230423
Browse files Browse the repository at this point in the history
1、抖音直播互动数据对接更换成系统代理抓包pd解码的方式(运行直播伴侣即可);
2、修复若干逻辑及说明错误。
  • Loading branch information
xszyou committed Apr 13, 2023
1 parent a42a720 commit d805436
Show file tree
Hide file tree
Showing 42 changed files with 33,776 additions and 196 deletions.
344 changes: 177 additions & 167 deletions README.md

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions WebSocket.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,24 @@
| Data.Time | 音频时长 (秒) | float | |
| Data.Type | 发言类型 | str | interact/script |





### 发送回复文字

```json
{
"Topic": "Unreal",
"Data": {
"Key": "text",
"Value": "很高兴见到你"
}
}
```



| 参数 | 描述 | 类型 | 范围 |
| ---------- | ---------------- | ----- | --------------- |
| Data.text | 文本 | str | |
Binary file added bin/Release_2.85/BCMakeCert.dll
Binary file not shown.
Binary file added bin/Release_2.85/BasicFormatsForCore.dll
Binary file not shown.
Binary file added bin/Release_2.85/CertMaker.dll
Binary file not shown.
Binary file added bin/Release_2.85/ColorConsole.dll
Binary file not shown.
Binary file added bin/Release_2.85/FiddlerCore4.dll
Binary file not shown.
7,270 changes: 7,270 additions & 0 deletions bin/Release_2.85/FiddlerCore4.xml

Large diffs are not rendered by default.

Binary file added bin/Release_2.85/Fleck.dll
Binary file not shown.
Binary file added bin/Release_2.85/Newtonsoft.Json.dll
Binary file not shown.
11,305 changes: 11,305 additions & 0 deletions bin/Release_2.85/Newtonsoft.Json.xml

Large diffs are not rendered by default.

Binary file added bin/Release_2.85/System.Buffers.dll
Binary file not shown.
38 changes: 38 additions & 0 deletions bin/Release_2.85/System.Buffers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class using the specifed configuration.</summary>
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class with the specified configuration.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
<summary>Retrieves a buffer that is at least the requested length.</summary>
<param name="minimumLength">The minimum length of the array.</param>
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
<summary>Returns an array to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method on the same <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method.</param>
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="clearArray">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method will not see the content of the previous caller. If <paramref name="clearArray">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>
</member>
<member name="P:System.Buffers.ArrayPool`1.Shared">
<summary>Gets a shared <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<returns>A shared <see cref="System.Buffers.ArrayPool`1"></see> instance.</returns>
</member>
</members>
</doc>
Binary file not shown.
5,143 changes: 5,143 additions & 0 deletions bin/Release_2.85/System.Collections.Immutable.xml

Large diffs are not rendered by default.

Binary file added bin/Release_2.85/System.Memory.dll
Binary file not shown.
Loading

0 comments on commit d805436

Please sign in to comment.