InertiaRSS Track and read blogs, news, and tech you care about
Read Original Open in InertiaRSS

Recommended Feeds

小众软件
小众软件
博客园 - 叶小钗
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
T
Tailwind CSS Blog
Jina AI
Jina AI
量子位
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
J
Java Code Geeks
V
Visual Studio Blog
月光博客
月光博客

博客园 - 大象已无形

中华老黄历正版-分享几个正宗中华老黄历网站 日历_月历_年历_2026年年历_2026年放假安排 手机型号查询接口api-根据useragent获取手机品牌型号接口api 康熙字典存世的几种版本分析-附《康熙字典》电子版全文在线查询 说文解字小篆版540个部首歌诀带拼音 网站seo优化站长工具提交常见搜索引擎蜘蛛和垃圾蜘蛛屏蔽robots.txt文件示例一篇文章就够了! 说文解字的各种版本总结以及常用的说文解字相关学习网站推荐 酷狗音乐KRC歌词接口api phpcurl函数类模拟Curl get post header refer携带Cookie模拟访问来源Refer模拟UseaAgent 通过QQ号获取QQ头像和昵称接口api php随机打乱数组顺序保留键值(php对数组洗牌算法实现) 一条sql语句完成MySQL去重留保留一条记录 [二分法算法]PHP实现二分法查找算法 抖音去水印接口api_短视频在线去水印小工具 分享淘宝时间服务器同步时间接口api和苏宁时间服务器接口api 中文分词接口api,采用结巴分词PHP版中文分词接口 在线HTTP POST/GET模拟请求api接口http请求测试工具https://post.jsonin.com/ JSON在线解析及格式化校验工具 jsonin.com 咪咕音乐链接歌词封面搜索等接口API 酷狗音乐API接口大全(40+个)
An online HTTP interface testing tool that simulates GET, POST, PUT, DELETE requests
大象已无形 · 2026-05-27 · via 博客园 - 大象已无形

HTTP API Testing Tool
https://post.jsonin.com
Supports all HTTP methods including GET, POST, PUT, DELETE, HEAD, TRACE, PATCH, OPTIONS

火狐截图_2026-05-27T14-35-59.378Z

Supports quick addition and batch import of request headers (Headers) 

Quick addition: Cookies
Authorization
Accept
Accept-Language
Accept-Encoding
Connection
Cache-Control
X-Forwarded-For (Proxy)
X-Real-IP (Proxy)
X-Requested-With
Content-Type: Form
Content-Type: Multipart
Content-Type: XML

Bulk Import: Paste the original request headers copied from the browser F12 (one key: value per line): Hint: In the browser, press F12 to open the developer tools → Network tab → Click the request → Headers tab → Right-click the request header area and select "Copy all" to copy.  

The standard HTTP protocol supports six request methods:
    GET: GET is arguably the most common method. It essentially involves sending a request to retrieve a resource from the server. The resource is returned to the client along with a set of HTTP headers and presentation data (such as HTML text, or images or videos, etc.). In GET requests, presentation data is never included;
    HEAD: HEAD is essentially the same as GET, with the main difference being that HEAD does not contain presentation data—it only includes HTTP header information. Some might think this method is not very useful, but that's not the case. Imagine a business scenario: if you want to determine whether a resource exists, you might typically use GET, but using HEAD in this case makes the intention clearer.
    PUT: This method is relatively uncommon. HTML forms also do not support this. Essentially, PUT and POST are very similar, both sending data to the server, but there is a significant difference between them. PUT typically specifies the location of the resource, while POST does not; the location of the data submitted via POST is determined by the server. For example: consider a URL for submitting a blog post, /addBlog. If using PUT, the submitted URL would be something like /addBlog/abc123, where abc123 is the address of that blog post. If using POST, the server would inform the client of the address after submission. Most blogs work this way. Clearly, PUT and POST have different purposes. Which one to use depends on the specific business scenario;
    DELETE: Delete a resource. This is also relatively uncommon, but it is used in some places, such as Amazon's S3 cloud service, to delete resources;
    POST: Submit data to the server. This method is widely used and almost all submission operations rely on it.
   OPTIONS: It is used to get the methods supported by the current URL. If the request is successful, it will include a header named "Allow" in the HTTP header, with the value being the supported methods, such as "GET, POST".
Usually, we use GET, PUT, POST, DELETE requests to simulate server operations for adding, deleting, updating, and querying databases.
POST: create (add)
     DELETE: delete (delete)
     Put : update(更新)
     GET: select (query)

Online POST, Online GET, Online API Testing Tool:https://post.jsonin.com