nakamurakko’s blog

仕事で覚えたこと、勉強したことを自分のメモ代わりに書いていこうかなと。

Azure Functions

Azure FunctionsとSQL データベースを連携する

AzureのDB「SQLデータベース」にデータ登録し、AzureのFunction Appからアクセスしてデータを返す方法の確認。 環境 Microsoft Azure Visual Studio 2019 SQL データベースの設定 SQL データベースを作成する SQLデータベースで新規追加する。 テストなので…

Azure Logic Appを使ってTwitterのメンションをメール通知する

Azure Logic AppとAzure Functionsで、Twitterのメンションを拾って、メールで通知できるように作ってみた。 環境 Microsoft Azure Logic App Function App (Azure Functions) やりたいこと Twitterのつぶやきを監視する 条件と一致した場合 Twitterのテキス…

Azure FunctionsのHttpTrigger + Azure CDNでルートディレクトリにアクセスさせる

Azure Functionsの登録したFunction Appの設定を変更して、 http://<Azureで定義したApp名>.azurewebsites.net のように、ルートディレクトリに直接アクセスしたかったけど、 http://<Function App名>.azurewebsites.net/api/<funcname> http://<Function App名>.azurewebsites.net/<funcname> のどちらかでアクセスするしかなさそうだっ</funcname></function></funcname></function></azureで定義したapp名>…

Function Appのルートプレフィックスを削除する

環境 クラウド環境 Microsoft Azure 開発環境 Windows 10 Pro Visual Studio 2017 設定 Function Appを作成すると、http://<Azureで定義したApp名>.azurewebsites.net/api/<funcname>でアクセスできるけど、apiの部分が要らないなと思って調べてみた。 Microsoftのドキュメントのトリガー - h</funcname></azureで定義したapp名>…

Azure FunctionsでHTMLを返す

サーバーレスとかFaaSの考え方でHTMLを返せないかと思い、Azureで試してみた。 ※Azureは料金に注意して使用してください。 環境 クラウド環境 Microsoft Azure 開発環境 Windows 10 Pro Visual Studio Professional 2017 Visual Studioでプロジェクト作成 新…