Skip to content

Commit 0e29e03

Browse files
authored
- Added tencent method description to README.md (#81)
- And changed URL in the method parameter in tencent.py examples. Signed-off-by: Maxim S <[email protected]>
1 parent ea4bcbb commit 0e29e03

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The easiest way to quickly integrate the 2Captcha captcha-solving service into y
2929
- [MTCaptcha](#mtcaptcha)
3030
- [Friendly Captcha](#friendly-captcha)
3131
- [Cutcaptcha](#cutcaptcha)
32+
- [Tencent](#tencent)
3233
- [Other methods](#other-methods)
3334
- [send / get_result](#send--getresult)
3435
- [balance](#balance)
@@ -297,6 +298,13 @@ result = solver.cutcaptcha(misery_key='ad52c87af17e2ec09b8d918c9f00416b1cb8c320'
297298
param1=..., ...)
298299
```
299300

301+
### Tencent
302+
Use this method to solve Cutcaptcha. Returns a token.
303+
```python
304+
result = solver.tencent(app_id="197326679",
305+
url="https://mysite.com/page/with/tencent",
306+
param1=..., ...)
307+
```
300308

301309
## Other methods
302310

examples/tencent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
try:
1919
result = solver.tencent(
20-
app_id="197322596",
21-
url="https://www.holla.world/random-video-chat#app"
20+
app_id="913522596",
21+
url="https://mysite.com/page/with/tencent"
2222
)
2323

2424
except Exception as e:

0 commit comments

Comments
 (0)