네이버 공유하기
728x90
$telegramURI = ("https://api.telegram.org/bot" + $botToken + "/sendMessage")
$telegramJson = ConvertTo-Json -Compress @{chat_id = $chatID; text='Woo! Fiber is finally avaliable! Go here to sign up: https://www.att.com/internet/fiber.html'}
$telegramResponse = Invoke-RestMethod -Uri $telegramURI -Method Post -ContentType 'application/json;charset=utf-8' -Body $telegramJson
텔레그램 문자 전송시 GET 을 막고 있습니다.
일부 전송에는 잘 되는데, 안되는 곳도 있습니다.
GET 으로 보낼 때 에러가 뜨면 POST 로 전달하면 됩니다.
반응형
'Tech > Windows' 카테고리의 다른 글
[파워쉘] 버전 확인, 버전 업데이트 (0) | 2022.01.11 |
---|---|
Windows 2008 R2 - 윈도 업데이트 에러코드 80243004 (0) | 2019.08.20 |
Hyper-V 외부 접속 가능하도록 설정 (0) | 2019.05.10 |
윈도 터미널 연결시 작업관리자 단축키 = Ctrl+Alt+End (0) | 2019.04.19 |
VPN 연결 실패 에러 코드 789 (0) | 2019.04.18 |
네이버 공유하기