LINE Rich Menu API のWindowsでの画像のアップロードの仕方
LINE MessageAPIでRich Menu APIを利用するのに画像をアップロードするときにWindowsだとcUrlが無いのでどうしたらいいんだっていう時のメモ
Rich Menu APIに関してはこちらを参照
LINE BotのRich Menu APIの使い方まとめ
1: PowerShellをコマンドラインで立ち上げる
c:xxx > powershell
2: headerやファイルのパスを変数として登録しておく
$headers = @{"Authorization" = "Bearer {CHANNEL_ACCESS_TOKEN}";"Content-Type"="image/jpeg"}
$imagePath = "C:\xxxx\xxxxx.jpg"
3: 下記のコマンドを実行
Invoke-RestMethod -Uri "https://api.line.me/v2/bot/richmenu/{richMenuId}/content" -Method POST -Headers $headers -InFile $imagePath2
Author And Source
この問題について(LINE Rich Menu API のWindowsでの画像のアップロードの仕方), 我々は、より多くの情報をここで見つけました https://qiita.com/wks/items/09b6f821c617b10329f7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .