我開始使用Azure功能進行開發。我已經能夠連接到我的實際Azure存儲帳戶隊列,以測試如何使用Azure功能進行編程。現在我的下一步是使用Microsoft Azure存儲資源管理器來使用本地存儲帳戶,因此我不必連接到azure。我看到如何做到這一點在這篇文章中:如何訪問本地PC上的仿真Azure存儲
ScriptHost initialization failed Microsoft.WindowsAzure.Storage: The remote server returned an error: (403) Forbidden.
in the appsettings.json I changed my values to this exactly:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==",
"AzureWebJobsDashboard": "",
"StorageConnectionString": "UseDevelopmentStorage=true"
}
}
當我使用Visual Studio我得到這個錯誤信息啓動了Azure的Fuctions CLI?
這裏有一個關於這博客:https://blog.kloud.com.au/2016/12/02/debugging-azure-functions-in-our-local-box/ 提琴手可能捕捉爲什麼有用的信息請求失敗 –