BLogs

pexels-photo-4488636-4488636.jpg
Bigqueryでutm parameterを抽出
以下のQueryで、GA4のraw dataから簡単にutm parameterを抽出できる with cte as ( SELECT user_pseudo_id, event_name, (select v.value.int_value from unnest(event_params) as v where v.key = 'ga_session_id')...
image
Power Automate Adaptive Card click event
What to DO ・上記のように、adaptive cardのapproveをクリック後、Http RequestでAPIをコールして、APIのresponseをteamsに返信することを実現したい場合のメモ Adaptive Card { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",...
image
Azure logic appsのIP制限
Azure Vnet Azure Vnetのデフォルト設定でVnetを作成 リソースでpublic ip addressを検索して、public ip addressを新しく作成 リソースでnat gatewayを検索して、nat gatewayを新しく作成 作成する際に、virtual network, outband ip addressを設定 Logic...
image
AWS Lambda layerの使い方
やりたいこと AWS Lambdaのpython環境ではcustomer packageが入ってない。requestsとかのlibを利用する場合は以下のエラーが出てくる customer packageを利用するために、lambda layerを利用する必要がある。 lambda layerでは、python packageを一括導入することができて、lambda側で利用することができる...
image
Teams approval adaptive card
Teams側で承認用のadaptive cardを作成 { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.2",...
1 2 3 4 5