如何通过 Powershell 发布到 Vitalist.com 的 API?
我想使用 Powershell 将新操作发布到我的 Vitalist.com 帐户。 Vitalist API 文档位于此处。
我已经在 Powershell 中尝试过 HttpWebResponse 但我遗漏了一些东西。任何指示表示赞赏。
谢谢。
I'd liketo use Powershell to post a new action to my Vitalist.com account.
The Vitalist API documentation is here.
I've tried HttpWebResponse in Powershell but I'm missing something. Any pointers are appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 Vitalis 一无所知,但是要执行 HTTP POST,您可以使用此函数:
如果您传递一些数据,请像这样对它们进行 urlencode:
只是猜测 - 也许这样的东西可以工作?
I don't know anything about Vitalis, but to execute HTTP POST you can use this function:
If you pass some data, urlencode them like this:
Just a guess - maybe something like this could work?