如果Web App URL(https://[whatever].azurewebsites.net)已经存在,是否可以使用PowerShell进行测试。
似乎有一种方法使用Test-AzureName,但似乎不再可用。
感谢。
答案 0 :(得分:0)
Ranadip的解决方案有效。您也可以使用
test-connection https://[whatever].azurewebsites.net
当您尝试在Azure门户中创建Web应用程序时,它将进行测试以确保您的Web应用程序是唯一的,如果您通过ARM模板或PowerShell进行部署,则如果您不是唯一的,则会出错。
答案 1 :(得分:-1)
您可以查看Invoke-webrequest。
你可以这样做:
Invoke-WebRequest https://[whatever].azurewebsites.net -Method Get
您可以将其作为google.com的示例进行测试,例如:
Invoke-WebRequest https://www.google.com -Method Get
如果正确返回,您可以检查200的状态代码。
希望它有所帮助。