Created
May 26, 2019 14:48
-
-
Save mehmetcakmaz/d84a6e5b3d6f9a5f00fb7bf0abcd58b9 to your computer and use it in GitHub Desktop.
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
[HttpGet] | |
public async Task<JsonResult> RecaptchaV3Vverify(string token) | |
{ | |
TokenResponse tokenResponse = new TokenResponse() | |
{ | |
Success = false | |
}; | |
using (var client = _httpClientFactory.CreateClient()) | |
{ | |
var response = await client.GetStringAsync($"{_googleVerifyAddress}?secret={_googleRecaptchaSecret}&response={token}"); | |
tokenResponse = JsonConvert.DeserializeObject<TokenResponse>(response); | |
} | |
return Json(tokenResponse); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment