If you have necessary permission for application, I think it is possible to send message to teams channel via on behalf of application via Graph API. Here is steps: Obtain token via client_credentials:
import requests
# Azure AD credentials
tenant_id = "your-tenant-id"
client_id = "your-client-id"
client_secret = "your-client-secret"
# Token endpoint
url = f"https://login.microsoftonline.com/{tenant_id}/oauth2/v2.0/token"
# Request body
data = {
"grant_type": "client_credentials",
"client_id": client_id,
"client_secret": client_secret,
"scope": "https://graph.microsoft.com/.default"
}
response = requests.post(url, data=data)
access_token = response.json().get("access_token")
Send message to channel:
# Teams API endpoint
team_id = "your-team-id"
channel_id = "your-channel-id"
url = f"https://graph.microsoft.com/v1.0/teams/{team_id}/channels/{channel_id}/messages"
# Message content
headers = {
"Authorization": f"Bearer {access_token}",
"Content-Type": "application/json"
}
payload = {
"body": {
"content": "Hello, this is a message sent by an application!"
}
}
response = requests.post(url, json=payload, headers=headers)
if response.status_code == 201:
print("Message sent successfully!")
else:
print("Error:", response.json())