#Connecting to outlook

1 messages Β· Page 1 of 1 (latest)

blissful cosmos
#

I'm experiencing an issue accessing Outlook emails through the Maton gateway integration. The connection shows as active, but the API endpoints aren't resolving correctly (404 errors on mailFolders/inbox/messages paths).

I have hosted openclow on Digital Ocean droplet , Ubuntu and am using Telegram as an interface.

Has anyone else encountered this? Any guidance on the correct endpoint path or configuration for Outlook through Maton would be appreciated! πŸ™

Thanks in advance!

dusk solsticeBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

blissful cosmos
#

Do i have to cofigure anything on openclaw ?

#

Gmail is working, i want to add outlook mails as well on Openclaw

cerulean tapir
#

Hi could you try running the following snippet to see if it works?

python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/outlook/v1.0/me')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF