最小限のコード
import json
import requests
post_json = json.dumps(
{
'title': "タイトル",
'text': "メッセージ"
}
)
requests.post(
"<Teams の WebhookURLを入れてください>",
post_json)
import json
import requests
post_json = json.dumps(
{
'title': "タイトル",
'text': "メッセージ"
}
)
requests.post(
"<Teams の WebhookURLを入れてください>",
post_json)