-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT] Added ability of reporting bad tokens
- Loading branch information
1 parent
ce520d1
commit a179829
Showing
6 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
namespace CapMonster.Cloud; | ||
|
||
internal class Endpoints | ||
internal static class Endpoints | ||
{ | ||
public const string Balance = "/getBalance"; | ||
|
||
public const string CreateTask = "/createTask"; | ||
|
||
public const string TaskResult = "/getTaskResult"; | ||
|
||
public const string IncorrectImageCaptcha = "/reportIncorrectImageCaptcha"; | ||
|
||
public const string IncorrectTokenCaptcha = "/reportIncorrectTokenCaptcha"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace CapMonster.Cloud.Utilities; | ||
|
||
public enum CaptchaTypes | ||
{ | ||
Image, | ||
Token, | ||
ReCaptcha, | ||
HCaptcha | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters