Does the LoRaWAN Gateway Support Historical Data Retrieval?

1. Based on Ubuntu Operating System Unlike traditional MCU architectures, the Manthink gateway adopts a Linux system based on Ubuntu, providing powerful computing capabilities and scalability, supporting local databases, edge computing services, and more. 2. Integrated Edge Version of ThinkLink NS Manthink has embedded the Edge version of the ThinkLink network server in the gateway, … Read more

HTTP Client Connection: Choosing Between HttpClient and OkHttp

Click on the blue text above“ Reply with “666” to receive the most popular Java core knowledge summary on the internet Is He Tiantian here? https://www.jianshu.com/p/68c30beca612 Code example: https://github.com/TiantianUpup/http-call Introduction The reason for writing this article stems from a conversation with a friend. This touches on my knowledge blind spot, so I started by searching … Read more

Deeply Trusted HTTP Control Mechanisms

HTTP Identification Control HTTPS Identification Control Custom Identification Control Background: During work hoursIT cannot access video websites Background Analysis:HTTP message, which field identifies the URL? Blocking HTTP websites, should the three-way handshake be allowed first? HTTP Identification Working Principle: HTTP website identification, after the terminal device resolves the domain name through DNS, completes the three-way … Read more

Detailed Setup and Practical Guide for the HTTP Mock Tool WireMock

WireMock is a widely used and open-source HTTP service mocking tool, suitable for various scenarios such as interface automation, unit testing, and integration testing. WireMock can run as a standalone server or be embedded in test code, supporting multi-language SDKs and multiple protocols such as REST and SOAP. The core advantages of WireMock lie in … Read more

Detailed Explanation of the HTTP Protocol

HTTP (Hypertext Transfer Protocol) is the foundation protocol for data communication on the World Wide Web (WWW) and is one of the most widely used protocols in modern internet applications. 1. Overview of HTTP 1.1 Basic Concepts Definition An application layer protocol based on the client-server model Function Specifies how clients and servers request and … Read more

A Detailed Explanation of HTTP/3

Head-of-Line Blocking in HTTP/2 Although HTTP/2 uses “frames”, “streams”, and “multiplexing” to eliminate “head-of-line blocking”, these techniques are applied at the application layer. However, at the lower layer, specifically in the TCP protocol, “head-of-line blocking” can still occur. TCP has a special “packet retransmission” mechanism to ensure reliable transmission. Lost packets must wait for retransmission … Read more

C#.NET HttpClient Usage Tutorial

Introduction <span><span>HttpClient</span></span> is a modern <span><span>API</span></span> in <span><span>.NET</span></span> used for sending <span><span>HTTP</span></span> requests and receiving <span><span>HTTP</span></span> responses, replacing the outdated <span><span>WebClient</span></span> and <span><span>HttpWebRequest</span></span> classes. <span><span>HttpClient</span></span> is provided in <span><span>.NET Framework 4.5</span></span> + and <span><span>.NET Core/.NET 5+</span></span>, based on a message handling pipeline (<span><span>message handler pipeline</span></span>), and is a modern <span><span>HTTP</span></span> client library. Compared to earlier … Read more

HttpClient is Outdated, OkHttp is Losing Ground! This Tool is the New King!

We are dedicated to exploring, sharing, and recommending the latest practical technology stacks, open-source projects, frameworks, and useful tools. Fresh open-source information awaits your discovery every day! Using <span>SpringBoot</span> directly with <span>OkHttp</span>, <span>HttpClient</span>, or <span>RestTemplate</span> to initiate <span>HTTP</span> requests is cumbersome and inconvenient for unified management. Therefore, we recommend a lightweight HTTP client framework suitable … Read more

Authorization in MQTT: Managing Access to MQTT Messages with ACL

Authorization is a security mechanism that determines whether to allow users, devices, or applications to access specific resources, operations, or information based on their identity and permissions. In computer systems, networks, web applications, and other environments that require protection of sensitive data and resources, authorization is a key measure for ensuring security and implementing access … Read more

Practical Implementation of MQTT over lwIP: A Combination of IoT Protocols

MQTT, as a lightweight publish/subscribe messaging protocol, provides real-time and reliable messaging services for resource-constrained IoT devices in low bandwidth, high latency, or unstable network environments. lwIP, as a similarly lightweight TCP/IP protocol implementation, minimizes the use of hardware resources, especially memory, while providing complete TCP/IP functionality, making lwIP very suitable for small embedded systems. … Read more