Tandem - HP NonStop 中是否有与 cURL 等效的工具?
我需要从 NonStop 计算机对 URL 执行简单的 HTTP POST,以确保服务正常运行。有办法做到这一点吗?
I need to execute a simple HTTP POST to a URL from the NonStop computer to make sure a service functions correctly. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用内置 TACL 命令发出 HTTP POST 请求。 TACL 命令 POST 允许您将 HTTP POST 请求发送到指定的 URL。例如:
POST url headers=content-type:text/plain
data=这是请求正文
Use the built-in TACL commands to make an HTTP POST request. The TACL command POST allows you to send an HTTP POST request to a specified URL. For example:
POST url headers=content-type:text/plain
data=This is the request body