英文:
Open full URL in browser from postman
问题
我正在使用Postman,我的保存的端点里有一堆变量,如何从浏览器中打开完整生成的带有填充变量的URL?
{{protocol}}://api.{{URL}}/oauth2/authorize?state=z3qAr0h5Ud&client_id={{oauth2_app_id}}&response_type=code
我可以在浏览器窗口中手动填写每个参数,但那很麻烦,我更希望能够获得完全填充的URL,在Postman中是否可能?
英文:
I am using postman and my saved endpoint have a bunch of variable in it, how do I open the full generated URL with variable filled in from a browser?
{{protocol}}://api.{{URL}}/oauth2/authorize?state=z3qAr0h5Ud&client_id={{oauth2_app_id}}&response_type=code
I could fill in each parameter manually in the browser window but that's a hassle and I would prefer if I can get the fully filled URL, is this possible in postman?
答案1
得分: 1
如果您打开右上角的代码视图,它应该填充了您的变量的URL(无论使用哪种语言)。我将我的 oauth2_app_id
设置为 test1
,您可以在URL中看到它被突出显示(我没有设置其他变量,只设置了oauth)。
打开代码视图
查看URL
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论