- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Sử dụng thư viện Polly gửi lại request api khi request bị lỗi hay rớt mạng
Xin chào các bạn, bài viết hôm nay mình xin giới thiệu các bạn thư viện Polly, dùng để gửi lại request http api khi lỗi request xảy ra: web api lỗi, rớt mạng, timeout...
[C#] Sử dụng thư viện Polly gửi lại http request khi gặp lỗi
Ví dụ: Khi các bạn sử dụng http request để lấy dữ liệu tự API Server, nhưng nếu lúc này api đang bị lỗi 503-Service Unavailable.
Thì chúng ta làm sao, nó tiếp tục request thêm n lần: 3,4,5... đảm bảo chúng ta luôn luôn lấy được dữ liệu.
Nếu bình thường, chúng ta tự code thì cũng đơn giản như sau:
private readonly HttpClient _client = new HttpClient();
public async Task<HttpResponseMessage> SendRequestWithRetry()
{
HttpResponseMessage response;
var sendCount = 0;
do
{
var request = new HttpRequestMessage(HttpMethod.Get, new Uri("https://laptrinhvb.net"));
response = await _client.SendAsync(request);
sendCount++;
}
while (sendCount < 10 && response.StatusCode == System.Net.HttpStatusCode.ServiceUnavailable);
return response;
}
Ở source này, các bạn thấy mình sử dụng cấu trúc lệnh do...while
để gởi, nếu gởi nó sẽ tiếp tục gởi tiếp 10 lần.
Trong này này mình giới thiệu các bạn thư viện Polly chuyên dụng thể thực hiện công việc này.
Các bạn, cài đặt thư viện Polly từ nuget:
dotnet add package Polly
Ở hình trên các bạn thấy khi nó request lỗi, nó sẽ tiếp tục request tiếp.
Source code demo C#, Console:
using Polly;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace Retry_requests_poly
{
internal class Program
{
static async Task Main()
{
var data = await MakeHttpRequestWithRetry("http://127.0.0.1:8081/pages/login.html?1152");
Console.WriteLine("Done!");
Console.Read();
}
static async Task<string> MakeHttpRequestWithRetry(string apiUrl)
{
var retryPolicy = Policy
.Handle<HttpRequestException>()
.WaitAndRetryAsync(60, retryAttempt => TimeSpan.FromSeconds(retryAttempt),
(exception, timeSpan, context) =>
{
Console.WriteLine($"Error: {exception.Message}");
Console.WriteLine($"Waiting for internet connection. Retrying in {timeSpan.TotalSeconds} seconds...");
});
//.WaitAndRetryForeverAsync(retryAttempt => TimeSpan.FromSeconds(retryAttempt));
try
{
var data = await retryPolicy.ExecuteAsync(async () =>
{
using (HttpClient httpClient = new HttpClient())
{
HttpResponseMessage response = await httpClient.GetAsync(apiUrl);
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine("Received data: " + responseBody);
return responseBody;
}
});
return data;
}
catch (HttpRequestException ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
return null;
}
}
}
Thanks for watching!