向Azure Rest Api发出put请求时,我一直收到此错误:
{"code":"InternalServerError",
"message":"There was an internal server error that occurred during this request.",
"target":null,
"details":[],
"innererror":[]}
我使用的查询是:(使用正确的值代替{example}字段)
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}?api-version=2014-04-01
我发送的Put请求是使用此内容(标头包含aplication / json):
{"location":"southcentralus"}
我尝试过不同的美国中南部变种无济于事。我已将日本东部放入其中,它告诉我无效的资源位置(所以我知道我的查询是在正确的位置)。
文档说位置和数据库名称是最低限度,所以我希望有人可以帮助我。谢谢。
PS我正在使用asp.net发送其余请求,但我相信其背后的代码无关紧要。