
Obsidian Publish はBOTが参照するときのみOGPを反映させるっぽい。なので、手動で「OGP確認
サイトで確認する」手段は取れない。反映されたか確認するには、curl
コマンドで気になるサイト情報を取得し、og:image
をgrepする。
cmd
curl -A bot https://blog.ariestechgarden.com/id250331004341 | find "og:image"
Powershell
curl -A bot https://blog.ariestechgarden.com/id250331004341 Out-String -Stream | Select-String "og:image"