asp.net core 騰訊驗證碼的接入

来源:https://www.cnblogs.com/weihanli/archive/2019/10/18/11698176.html
-Advertisement-
Play Games

asp.net core 騰訊驗證碼的接入 Intro 之前使用的驗證碼服務是用的極驗驗證,而且是比較舊的,好久之前接入的,而且驗證碼服務依賴 Session,有點不太靈活,後來發現騰訊也有驗證碼服務,而且支持小程式,並且是唯一支持小程式的驗證碼。。(壟斷麽。。) 而且相比之下,騰訊驗證碼不需要依賴 ...


asp.net core 騰訊驗證碼的接入

Intro

之前使用的驗證碼服務是用的極驗驗證,而且是比較舊的,好久之前接入的,而且驗證碼服務依賴 Session,有點不太靈活,後來發現騰訊也有驗證碼服務,而且支持小程式,並且是唯一支持小程式的驗證碼。。(壟斷麽。。)

而且相比之下,騰訊驗證碼不需要依賴 Session,集成起來也比較方便,於是就用了騰訊驗證碼,詳細參考:https://007.qq.com/product.html?ADTAG=index.block

驗證流程

伺服器端接入

using System.ComponentModel.DataAnnotations;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using WeihanLi.Extensions;

namespace ActivityReservation.Common
{
    public class TencentCaptchaOptions
    {
        /// <summary>
        /// 客戶端AppId
        /// </summary>
        [Required]
        public string AppId { get; set; }

        /// <summary>
        /// App Secret Key
        /// </summary>
        [Required]
        public string AppSecret { get; set; }
    }

    public class TencentCaptchaRequest
    {
        /// <summary>
        /// 驗證碼客戶端驗證回調的票據
        /// </summary>
        public string Ticket { get; set; }

        /// <summary>
        /// 驗證碼客戶端驗證回調的隨機串
        /// </summary>
        public string Nonce { get; set; }

        /// <summary>
        /// 提交驗證的用戶的IP地址(eg: 10.127.10.2)
        /// </summary>
        public string UserIP { get; set; }
    }

    public class TencentCaptchaHelper
    {
        private class TencentCaptchaResponse
        {
            /// <summary>
            /// 1:驗證成功,0:驗證失敗,100:AppSecretKey參數校驗錯誤
            /// </summary>
            [JsonProperty("response")]
            public int Code { get; set; }

            /// <summary>
            /// 惡意等級 [0, 100]
            /// </summary>
            [JsonProperty("evil_level")]
            public string EvilLevel { get; set; }

            /// <summary>
            /// 錯誤信息
            /// </summary>
            [JsonProperty("err_msg")]
            public string ErrorMsg { get; set; }
        }

        private const string TencentCaptchaVerifyUrl = "https://ssl.captcha.qq.com/ticket/verify";
        private readonly TencentCaptchaOptions _captchaOptions;
        private readonly ILogger _logger;
        private readonly HttpClient _httpClient;

        public TencentCaptchaHelper(
            IOptions<TencentCaptchaOptions> option,
            ILogger<TencentCaptchaHelper> logger,
            HttpClient httpClient)
        {
            _captchaOptions = option.Value;
            _logger = logger;
            _httpClient = httpClient;
        }

        public async Task<bool> IsValidRequestAsync(TencentCaptchaRequest request)
        {
            // 參考文檔:https://007.qq.com/captcha/#/gettingStart
            var response = await _httpClient.GetAsync(
                $"{TencentCaptchaVerifyUrl}?aid={_captchaOptions.AppId}&AppSecretKey={_captchaOptions.AppSecret}&Ticket={request.Ticket}&Randstr={request.Nonce}&UserIP={request.UserIP}");
            var responseText = await response.Content.ReadAsStringAsync();
            if (responseText.IsNotNullOrEmpty())
            {
                _logger.Debug($"Tencent captcha verify response:{responseText}");
                var result = responseText.JsonToType<TencentCaptchaResponse>();
                if (result.Code == 1)
                {
                    return true;
                }
            }
            return false;
        }
    }
}

Startup 配置:

services.AddHttpClient<TencentCaptchaHelper>(client => client.Timeout = TimeSpan.FromSeconds(3))
    .ConfigurePrimaryHttpMessageHandler(() => new NoProxyHttpClientHandler());
services.AddTencentCaptchaHelper(options =>
{
    options.AppId = Configuration["Tencent:Captcha:AppId"];
    options.AppSecret = Configuration["Tencent:Captcha:AppSecret"];
});

前端接入

前端接入這裡不作多介紹了,接入方式多種多樣,具體可以參考官方文檔:https://cloud.tencent.com/document/product/1110/36841

下麵的代碼是 angular spa 在前端接入的核心代碼

  private loadCaptcha(): void {
    var tCaptcha = document.getElementById("tCaptcha");
    if (tCaptcha) {
      this.InitCaptcha();
      return;
    }
    let script = <any>document.createElement('script');
    script.id = "tCaptcha";
    script.type = 'text/javascript';
    script.src = "https://ssl.captcha.qq.com/TCaptcha.js"
    if (script.readyState) {  //IE
      script.onreadystatechange = () => {
        if (script.readyState === "loaded" || script.readyState === "complete") {
          this.InitCaptcha();
        }
      };
    } else {  //Others
      script.onload = () => {
        this.InitCaptcha();
      };
    }
    document.getElementsByTagName('body')[0].appendChild(script);
  }

  private InitCaptcha(): void {
    let captchaDom = document.getElementById('TencentCaptcha1');
    if (!captchaDom) {
      return;
    }
    this.tencentRecaptcha = new TencentCaptcha(
      captchaDom, appId, (res) => {
        this.captchaValid = false;
        console.log(res);
        // res(用戶主動關閉驗證碼)= {ret: 2, ticket: null}
        // res(驗證成功) = {ret: 0, ticket: "String", randstr: "String"}
        if (res.ret === 0) {
          this.captchaInfo.nonce = res.randstr;
          this.captchaInfo.ticket = res.ticket;
          this.captchaValid = true;
          this.tencentRecaptcha.destroy();

          let button = <HTMLElement>document.getElementById("btnSubmit");
          button.click();
        }
      }
    );
    console.log(`captcha inited`);
    this.tencentRecaptcha.show();
  }

使用效果:

老版網站接入效果:

Reference


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在VS的程式包管理控制臺中輸入Install package MySql.Data時,預設安裝最新的版本8.0.18, 但是安裝完成後,發現包並沒有添加到項目的引用列表中, 在解決方案的packages文件夾中找到8.0.18對應的文件夾MySql.Data.8.0.18,發現其中並沒有相應dll文 ...
  • using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms; namespace WindowsFormsApplication8{ static class Program { ...
  • C# -- 優先獲取電腦C盤之外的磁碟來保存數據 1. 優先獲取電腦C盤之外的磁碟來保存數據。沒有其他盤則使用C盤。 ...
  • 最近因為項目需要調度作業服務,之前看張隊推薦過一篇https://www.cnblogs.com/yudongdong/p/10942028.html 故直接拿過來實操,發現很好用,簡單、方便 執行周期webapi任務,nice 發佈到生產環境,順便看看伺服器資源情況,我艹,記憶體,每s漲1M,漲到5 ...
  • 獲取伺服器地址類型分多種,以下記錄 1、HttpContext.Current.Server.MapPath("~/File") 返回的值為 D:\3Project\Code\MobileService\WebApi\File。 本地服務:此路徑為項目所在磁碟地址根目錄。 部署伺服器:為部署文件所在 ...
  • 之前一直開發Winfrom程式,由於近一段時間轉開發Wpf程式,剛好拜讀劉鐵錳《深入淺出WPF》對此有一些理解,如有誤導指出,還望斧正!!! 說道WPF數據驅動的編程思想,MVVM,是為WPF量身定做的模式,該模式充分利用了WPF的數據綁定機制,最大限度地降低了Xmal文件和CS文件的耦合度,也就是 ...
  • @[toc] 前言 時間過得好快,在之前升級到3.0之後,就感覺好久沒再動過啥東西了,之前有問到Swagger的中文漢化,雖說我覺得這種操作的意義不是太大,也是多少鼓搗了下,其實個人感覺就是元素內容替換,既然可以執行js了那不就是網頁上隨便搞了,所以就沒往下再折騰,但是現在需要用到Excel的操作了 ...
  • 部署consul-docker鏡像 先搜索consul的docker鏡像 然後選擇了第一個,也就是官方鏡像 下載鏡像 然後運行鏡像 docker run -d --name consul -v /home/root/config:/config --restart=always\ -p 8300:8 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...