我目前正在为一所大学制作 API。该项目的目的是查看每门课程并检查它是否包含某个模块,如果没有,则添加一个。看起来很简单,但使项目复杂的事情是学习语法以实际做它!我在 powershell 中编写此代码,我尝试使用 curl 并调用 Web 请求。我尝试遵循画布的文档,但我无法得到它。这是我有两个例子,你能告诉我如何正确格式化它。
######this is the first way I tried it and the error I get Invoke-WebRequest : {"message":"missing module parameter"}
$temp2=($mainURL+$course.ID+"/modules"+$securityToken)
$reply = curl -Uri $temp2 -Method Post -Body '{"module[name]"="Getting started","module[position]"="1"}'
#######
#########This is the second way I've tried and the error I get Invoke-WebRequest : The remote server returned an error: (422) Unprocessable Entity.
$url="https://University.instructure.com/api/v1/courses/1371/modules?access_token=abc123"
$body= "{'module[name]'='Getting started,'module[position]'=1}"
Invoke-WebRequest -Uri $url -ContentType "application/json" -Method Post -Body $body
#########
来自网站https://canvas.instructure.com/doc/api/index.html的文档
更新 5-26-2016 我已经弄清楚如何正确格式化消息的正文。现在我收到错误消息
$header = @{"Authorization"="Bearer "+ $security_token}
$body= '{"module[name]":"Getting started","module[position]":"1"}'
$curlly=Invoke-WebRequest -Headers $header -Body $body -Method Post -ContentType "application/json" -Uri ($url_main+"courses/1371/modules")
$module = ConvertFrom-Json $curlly.Content
curl : Invalid URI: The hostname could not be parsed.
At line:1 char:1
+ curl
+ ~~~~
+ CategoryInfo : NotSpecified: (:) [Invoke-WebRequest], UriFormatException
+ FullyQualifiedErrorId : System.UriFormatException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand
我真的不知道此时该怎么做,此时将不胜感激任何指导。