How do I open a WebLink received from the outlook restful api in conversation view? (kinda like how in gmail if you open an email, you can see all the previous messages and attachments)
Here is an example of aWebLink: "https://outlook.live.com/owa/?ItemID=AQMkADAwATNiZmYAZC0wMTlkLWQ1NjktMDACLTAwCgBGAAADTWCDb%2BAeaU2aAmthBvoOHgcAFp9IUDCaPEG5aPJFjPaf3AAAAgEMAAAAFp9IUDCaPEG5aPJFjPaf3AAAAJKI4ZYAAAA%3D&exvsurl=1&viewmodel=ReadMessageItem&path="
Thanks
Related
I have subscribed calendars in my Outlook (subscribed to using feed links), and I want to get the id of these calendars. Following Microsoft's API, a GET Request on https://graph.microsoft.com/v1.0/me/calendars using Microsoft Graph Explorer only shows my Outlook calendar and not the calendars that I have subscribed to. How can I make them visible?
I have tried it from my end using Outlook on the Web, going to
Calendar--> Add Calendar--> Subscribe from Web--> Give the link and Save.
I used the same call and it worked for me.
I have a web application for organizations. I would like to allow users to add an existing Google Chat bot to their Google Chat workspace programmatically - example workflow: Jack visits mywebsite.com, presses button 'Add site bot' and the bot gets added to their Google Chat where the bot can asynchronously message the user.
Is this functionality possible at the moment or does the user have to connect the bot manually through the Google Chat interface?
Thanks,
Mihai
Is it possible to send a notification message to users to navigate to the Personal Tab app in Side rail from the "Activity" or "Chat" window in MS teams?
The notification message in Activity and Chat should have a link that would navigate to the New Personal Tab installed.
Yes, you can do this by sending a Deep Link to your app's Personal tab. See more about this at Create Deep Links.
To actually send the message you have a few options, including:
Create a Bot
Use an incoming Webhook
Use the Microsoft Graph
Use Power Automate (Flow) (there's an app in Teams called the "Flow Bot" which enables you to send messages from Flows directly to a user.
Referral events should send an event according to the documentation here. See #2 for more information.
I am trying to receive this event, however, it does not seem as though the event is sent to the bot framework. We verified that the permission is granted with Facebook Messenger setup. I am using nGrok and can see all messages routed to the bot, however, this event does not show up when using an http://m.me/ link
Are these events supported?
You need to subscribe to Referral Messages in the Facebook Messenger Developer Portal. Open the settings blade on the left, scroll down to webhooks, and hit edit events.
Then enable messaging referrals and click save.
When the user clicks on the m.me link it will open the conversation and send a message activity to the bot. Note, I could only get this behavior to work if I added a ref parameter to the link - https://m.me/<PAGE_NAME>?ref=<VALUE>.
Hope this helps!
I'm currently building an integration with Office 365 Outlook thanks to the Microsoft Graph API. I retrieve user messages data, along with the webLink, which is a direct URL to the message in Outlook Web App.
By default, it opens in a popout window displaying only this message. My goal is to display it in the full Outlook Web App. In the documentation of a Message resource, Microsoft states this:
You can append an ispopout argument to the end of the URL to change how the message is displayed. If ispopout is not present or if it is set to 1, then the message is shown in a popout window. If ispopout is set to 0, then the browser will show the message in the Outlook Web App review pane.
Doing this works well if the e-mail is in the Inbox mail folder. However, if it is in another folder (like Sent Items or a custom one), it always redirects to the Inbox and opens the first message in it.
Is it a known limitation of this parameter? Is there a workaround to achieve this?
Best regards!