Skip to content

Commit

Permalink
Added softId parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaczero committed Apr 16, 2020
1 parent 323f2b3 commit 0be2d69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions AntiCaptcha/AntiCaptcha.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public async Task<AntiCaptchaResult> GetBalance(CancellationToken cancellationTo
private async Task<AntiCaptchaResultInternal> Solve(int delaySeconds, IDictionary<string, object> content, CancellationToken cancellationToken = default)
{
content["clientKey"] = _apiKey;
content["softId"] = 935;

var contentJson = JsonConvert.SerializeObject(content);
var inResponse = await _httpClient.PostAsync(BaseUrl + "createTask", new StringContent(contentJson), cancellationToken).ConfigureAwait(false);
Expand Down
6 changes: 3 additions & 3 deletions AntiCaptcha/AntiCaptcha.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Zaczero/AntiCaptcha</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<Version>1.3</Version>
<Version>1.3.1</Version>
<PackageTags>anticaptcha, captcha, solver, google, recaptcha, hcaptcha, geetest, text, image, wrapper, api</PackageTags>
<PackageId>AntiCaptchaAPI</PackageId>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<AssemblyVersion>1.3.1.0</AssemblyVersion>
<FileVersion>1.3.1.0</FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Zaczero/AntiCaptcha</RepositoryUrl>
<PackageIcon>AntiCaptcha.png</PackageIcon>
Expand Down

0 comments on commit 0be2d69

Please sign in to comment.