<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>postman - 小康教程</title>
	<atom:link href="https://www.xiangkangzy.com/tag/postman/feed" rel="self" type="application/rss+xml" />
	<link>https://www.xiangkangzy.com</link>
	<description>软件使用教程_手机app使用教程_安卓软件app教程_苹果app教程</description>
	<lastBuildDate>Sat, 09 Aug 2025 01:26:40 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>我来分享postman怎么添加断言 postman添加断言方法。</title>
		<link>https://www.xiangkangzy.com/30590.html</link>
					<comments>https://www.xiangkangzy.com/30590.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Sat, 09 Aug 2025 01:26:40 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[断言]]></category>
		<category><![CDATA[方法]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30590.html</guid>

					<description><![CDATA[postman怎么添加断言?很多小伙伴不会操作，下面小康教程小编给大家带来postman添加断言方法，我们一起 ...]]></description>
										<content:encoded><![CDATA[<p>
postman怎么添加断言?很多小伙伴不会操作，下面小康教程小编给大家带来postman添加断言方法，我们一起学习下吧。
</p>
<p>
<strong>postman怎么添加断言 postman添加断言方法</strong>
</p>
<p style="text-align:center">
<strong><img decoding="async" src="/wp-content/uploads/2025/8/0it34wrgojp.jpg" alt="postman怎么添加断言 postman添加断言方法" /><br />
</strong>
</p>
<p>
打开上次保存的postman完成的访问百度经验的一个简单的Get请求。
</p>
<p>
9postman-测试GET请求
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/rpoqkl4e4ni.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
点击Send，查看响应信息。
</p>
<p>
这里就设置，检查响应信息里面包含：百度经验——实用生活指南
</p>
<p>
这几个字。
</p>
<p>
同时设置响应httpCode为200，断言响应成功。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/eh3v0rx1q5a.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
点击Url下方的Tests，这里设置断言。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/x1vpcpjownx.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
点进来后这里是空的，你如果熟悉postman的函数，可以直接手动输入，如果不熟悉，postman在右侧已经提供了tests片段。
</p>
<p>
点击Learn more tests可以了解更多代码片段。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/trutrcpgcx2.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
找到Response body：Contains string
</p>
<p>
响应body包含字符串。
</p>
<p>
点击。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/ii4dzhg5bd1.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
在Tests框内出现一段代码片段，其他不用管，只需要将string_you_want_to_search字符串，替换为：百度经验——实用生活指南
</p>
<p>
即可，而且代码片段写的很明白，从英文意思就可以了解该如何设置。
</p>
<p><img decoding="async" alt="postman怎么添加断言 postman添加断言方法" src="/wp-content/uploads/2025/8/uu41ijxnasg.png" width="500" height="99" /></p>
<p><img fetchpriority="high" decoding="async" alt="postman怎么添加断言 postman添加断言方法" src="/wp-content/uploads/2025/8/mptbeavtfro.png" width="500" height="142" /></p>
<p>
找到代码片段。Status code：code is 200.
</p>
<p>
点击。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/koeknyovzkd.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
生成断言httpCode为200的代码片段。
</p>
<p><img decoding="async" alt="postman怎么添加断言 postman添加断言方法" src="/wp-content/uploads/2025/8/np3ntulaf0h.png" width="500" height="143" /></p>
<p>
Ctrl+s保存一下请求的设置。
</p>
<p>
然后点击Send发送请求，查看响应信息。
</p>
<p>
响应中查看Tests Results。
</p>
<p>
设置的检查全部成功。
</p>
<p><img decoding="async" src="/wp-content/uploads/2025/8/wrv40cnwr3w.jpg" alt="postman怎么添加断言 postman添加断言方法" /></p>
<p>
以上就是postman添加断言方法，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30590.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30590.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>我来教你postman中如何传list 的参数 postman传list参数方法。</title>
		<link>https://www.xiangkangzy.com/30575.html</link>
					<comments>https://www.xiangkangzy.com/30575.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Fri, 12 Apr 2024 00:25:44 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[参数]]></category>
		<category><![CDATA[方法]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30575.html</guid>

					<description><![CDATA[postman中如何传list 的参数?很多朋友不知道怎么操作，本文介绍如果通过postman发送带有list ...]]></description>
										<content:encoded><![CDATA[<p>
postman中如何传list 的参数?很多朋友不知道怎么操作，本文介绍如果通过postman发送带有list参数的请求，一起来看看吧。
</p>
<p>
<strong>postman中如何传list 的参数 postman传list参数方法</strong>
</p>
<p style="text-align:center">
<strong><img decoding="async" src="/wp-content/uploads/2024/4/qvsjrvzmqog.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /><br />
</strong>
</p>
<p>
点击电脑上的Postman图标启动工具
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/weufihrovap.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /></p>
<p>
点击New按钮建立个新的请求接口
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/54zgaozrbra.jpg" alt="postman中如何传list 的参数 postman传list参数方法" width="500" height="232" title="" align="" /></p>
<p>
在弹出的对话框中点击Request功能图标
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/2l32aq1vggd.jpg" alt="postman中如何传list 的参数 postman传list参数方法" width="500" height="174" title="" align="" /></p>
<p>
填写请求的名称和描述信息，点击按钮Save to 接口测试
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/nqg1azak5gm.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /></p>
<p>
点击新建立的请求，方法选择POST,再点击Headers，设定Content-Type为application/json
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/0slhz5cjfrz.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /></p>
<p>
点击Body，选择raw选项
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/mkkaxsgb3sb.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /></p>
<p>
7构造你要传递给后台接口的list参数，点击Send发送查看结果。大功告成
</p>
<p><img decoding="async" src="/wp-content/uploads/2024/4/ek201zy4lga.jpg" alt="postman中如何传list 的参数 postman传list参数方法" /></p>
<p>
以上就是postman传list参数方法，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30575.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30575.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>教你postman怎么添加请求参数 Postman发送带参数的get请求方法。</title>
		<link>https://www.xiangkangzy.com/30591.html</link>
					<comments>https://www.xiangkangzy.com/30591.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Tue, 30 May 2023 01:26:46 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[参数]]></category>
		<category><![CDATA[方法]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30591.html</guid>

					<description><![CDATA[postman怎么添加请求参数?不少小伙伴不会操作，下面小康教程小编给大家带来Postman发送带参数的get ...]]></description>
										<content:encoded><![CDATA[<p>
postman怎么添加请求参数?不少小伙伴不会操作，下面小康教程小编给大家带来Postman发送带参数的get请求方法，有需要的小伙伴一起来看看吧。
</p>
<p>
<strong>postman怎么添加请求参数 Postman发送带参数的get请求方法</strong>
</p>
<p style="text-align:center">
<strong><img decoding="async" src="/wp-content/uploads/2023/5/yfx1cjyknge.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" /><br />
</strong>
</p>
<p>
1.首先确认你已经安装了Postman
</p>
<p><img decoding="async" src="/wp-content/uploads/2023/5/ia52x13aa50.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" /></p>
<p>
2.打开Postman，点击添加选项卡
</p>
<p><img decoding="async" src="/wp-content/uploads/2023/5/jrxh1qajy5u.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" width="600" height="247" title="" align="" /></p>
<p>
3.在地址栏中写上你的请求地址
</p>
<p><img decoding="async" src="/wp-content/uploads/2023/5/j54zp2p43cb.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" width="600" height="345" title="" align="" /></p>
<p>
4.接着在请求参数中写上你的参数的值
</p>
<p><img decoding="async" src="/wp-content/uploads/2023/5/d4hmji0aesa.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" width="600" height="404" title="" align="" /></p>
<p>
5.最后点击【send】发送请求
</p>
<p><img decoding="async" src="/wp-content/uploads/2023/5/1mhgvfteaol.jpg" alt="postman怎么添加请求参数 Postman发送带参数的get请求方法" width="600" height="207" title="" align="" /></p>
<p>
以上就是Postman发送带参数的get请求方法，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30591.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30591.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>今天分享postman如何添加认证 postman添加权限认证方法。</title>
		<link>https://www.xiangkangzy.com/30587.html</link>
					<comments>https://www.xiangkangzy.com/30587.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Wed, 17 May 2023 23:26:30 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[方法]]></category>
		<category><![CDATA[权限]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30587.html</guid>

					<description><![CDATA[postman如何添加认证?很多小伙伴不会操作，下面小康教程小编为大家带来postman添加权限认证方法，一起 ...]]></description>
										<content:encoded><![CDATA[<p>
postman如何添加认证?很多小伙伴不会操作，下面小康教程小编为大家带来postman添加权限认证方法，一起来看看吧。
</p>
<p>
<strong>postman如何添加认证 postman添加权限认证方法</strong>
</p>
<p><img decoding="async" alt="postman如何添加认证 postman添加权限认证方法" src="/wp-content/uploads/2023/5/oqvm3vwc1ah.png" width="600" height="387" title="" align="" /></p>
<p>
Basic Auth
</p>
<p>
输入用户名和密码，点击 Update Request 生成 authorization header
</p>
<p>
一种身份验证
</p>
<p>
以上就是postman添加权限认证方法，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30587.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30587.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>小编教你postman怎么调用webservice接口 使用postman调用webservice。</title>
		<link>https://www.xiangkangzy.com/30592.html</link>
					<comments>https://www.xiangkangzy.com/30592.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Fri, 04 Nov 2022 00:26:49 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[webservice]]></category>
		<category><![CDATA[接口]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30592.html</guid>

					<description><![CDATA[postman怎么调用webservice接口?很多小伙伴不会操作，下面小康教程小编教大家设置方法，有需要的用 ...]]></description>
										<content:encoded><![CDATA[<p>
postman怎么调用webservice接口?很多小伙伴不会操作，下面小康教程小编教大家设置方法，有需要的用户快来看看吧。
</p>
<p>
<strong>postman怎么调用webservice接口 使用postman调用webservice</strong>
</p>
<p>
一:根据url,方法名,参数访问webService
</p>
<p>
1.设置url,post格式访问
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/pomdu3dkyoo.png" width="600" height="140" title="" align="" /></p>
<p>
2.设置Headers
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/jtbwypxigxd.png" width="600" height="120" title="" align="" /></p>
<p>
3.设置body,选择row,设置请求头.
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/rfkzvn1n33y.png" width="600" height="197" title="" align="" /></p>
<p>
123456 111111
</p>
<p>
4.点击send,进行访问获取结果
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/djanmkegmp4.png" width="600" height="247" title="" align="" /></p>
<p>
5.点击send下的code生成需要的代码:
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/giaq0sqitcm.png" width="600" height="268" title="" align="" /></p>
<p>
二:根据url,设置参数访问webService
</p>
<p>
设置url,以及get访问:
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/re4mejip1ds.png" width="600" height="217" title="" align="" /></p>
<p>
2.设置param:
</p>
<p><img decoding="async" alt="postman怎么调用webservice接口 使用postman调用webservice" src="/wp-content/uploads/2022/11/acpgngakzrr.png" width="600" height="212" title="" align="" /></p>
<p>
3.点击send,获取返回数据
</p>
<p>
以上就是postman怎么调用webservice接口的全部内容，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30592.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30592.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>小编分享postman怎么设置cookie参数 postman设置Cookie上行参数访问接口。</title>
		<link>https://www.xiangkangzy.com/30588.html</link>
					<comments>https://www.xiangkangzy.com/30588.html#respond</comments>
		
		<dc:creator><![CDATA[cwhello]]></dc:creator>
		<pubDate>Thu, 12 May 2022 01:26:33 +0000</pubDate>
				<category><![CDATA[其他教程]]></category>
		<category><![CDATA[postman]]></category>
		<category><![CDATA[参数]]></category>
		<category><![CDATA[接口]]></category>
		<guid isPermaLink="false">https://www.xiangkangzy.com/30588.html</guid>

					<description><![CDATA[postman怎么设置cookie参数?很多小伙伴不会操作，下面小康教程小编给大家简单单列下Postman f ...]]></description>
										<content:encoded><![CDATA[<p>
postman怎么设置cookie参数?很多小伙伴不会操作，下面小康教程小编给大家简单单列下Postman for<br />
windows版本cookie传参步骤，一起来学习下吧。
</p>
<p>
<strong>postman怎么设置cookie参数 postman设置Cookie上行参数访问接口</strong>
</p>
<p style="text-align:center">
<strong><img decoding="async" src="/wp-content/uploads/2022/5/5jhnuje5dhf.jpg" alt="postman怎么设置cookie参数 postman设置Cookie上行参数访问接口" /><br />
</strong>
</p>
<p>
打开postman，new一个Tab。进Headers，点击右侧Cookies按钮
</p>
<p><img decoding="async" alt="postman怎么设置cookie参数 postman设置Cookie上行参数访问接口" src="/wp-content/uploads/2022/5/x1scwuvsssy.png" width="600" height="89" title="" align="" /></p>
<p>
首次配置cookie，需Add一个domain(域名)，下面以百度为例
</p>
<p><img decoding="async" alt="postman怎么设置cookie参数 postman设置Cookie上行参数访问接口" src="/wp-content/uploads/2022/5/1jz2mkfqbtu.png" width="562" height="97" /></p>
<p>
接着执行‘Add Cookie’，添加Cookies
</p>
<p><img decoding="async" alt="postman怎么设置cookie参数 postman设置Cookie上行参数访问接口" src="/wp-content/uploads/2022/5/m4lqjdp2mws.png" width="600" height="251" title="" align="" /></p>
<p>
save保存后，即添加成功。若想添加多个cookies参数，Add就可以。
</p>
<p>
如上是通过Postman for Windows版本进行编辑的，用Chrome插件的话需要同时添加“Postman<br />
Interceptor”扩展程序，并turn on Request Capture。
</p>
<p>
以上就是postman设置Cookie上行参数访问接口，更多精彩教程尽在小康教程!</p>

<p><img src="https://www.xiangkangzy.com/postviews/30588.png" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.xiangkangzy.com/30588.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
