files
68 TopicsProgramatically accessing files shared in teams
My group has filed stored in teams channels. They're basically using excel files for data entry. I'd like to access them automatically/programatically for data analysis. Ideally in Python, but I'm open to any language. ANY solution that automatically mirrors a Teams file to a hard drive would be wonderful as an alternative. There is a REST API for 365 but it doesn't seem to provide the functionality I need based on the Microsoft.com docs, it's only for accessing files in public chat? See my stack overflow post here if you want to dive into some code: https://stackoverflow.com/questions/57103597/grabbing-files-from-microsoft-teams-using-python?noredirect=1#comment100729051_5710359738KViews0likes6CommentsScan a document or save a picture directly to a Teams folder
Is there a way to scan a document such as a receipt directly to a Teams folder from a phone or tablet? I tried using Office Lens, but my options are only OneDrive and OneNote. I am trying to make it easy for my employees to scan receipts into their respective Team folders, but can't seem to locate an easy one-click method. I get that I can scan to OneDrive, then upload, butSolved31KViews0likes7Comments"The following character are not allo..' in Teams but allowed in SharePoint
Why is this an issue in Teams when I can upload a file (with '#' or '&' in it's file name) via SharePoint? Is there any plan to solve this in Teams. I noticed I can't download the file either in Teams but can do it in SharePoint.Solved14KViews1like4CommentsSend chat message with attachment in teams channel
Trying to post chat message with attachment in teams channel using graph API. We are able to post the message successfully but when try to preview the attachment we are seeing a message please find the screenshot below. Please suggest a way to resolve this issue. tried request to post using graph call: POST https://graph.microsoft.com/v1.0/teams/{teamsId}/channels/{channelId}/messages { "body": { "contentType": "html", "content": "Test with Graph Attachment. <attachment id=\"{eTag}\"></attachment>" }, "attachments": [ { "id": "{eTag}", "contentType": "reference", "contentUrl": "{SPO Attachment URL}", "name": "Test Versions.docx" } ] }13KViews0likes25CommentsChrome block all downloads initiated from sandboxed iframe
Hi all, Recently Google Chrome updated their functionality for sandbox iframes with preventing downloads at sanbox iframe. "We plan to prevent downloads initiated from sandboxed iframes, and this restriction could be lifted via an 'allow-downloads' keyword, if present in the sandbox attribute list." As Microsoft Teams - presonal/ tab app are invoked their downloads from sandbox iframe, all downloads are failed at Google Chrome version 83 and hire . Does anyone know , Microsoft Teams dev will enable the flag "allow-downloads" for Teams sandbox atribute list ? Specification : https://github.com/whatwg/html/pull/4293 Design doc: https://docs.google.com/document/d/1XfLQd9IbJBPAE4IAOvu4EubUaLuICJrDlrmz0Ya_mqQ/edit7.1KViews0likes3CommentsIs it possible to automatically send attendance reports to my website?
We want to have the facility to receive the attendance reports to our website directly after the meeting, and also to be able to add an invitation (button) to automatically take you or add you to the private group of teams, is it possible to do it? And what is needed to achieve this? P.S. Our website is powered by microsoft (Our members have to log in with their microsoft mail)5.4KViews0likes2CommentsNot Getting Data from Graph rest api for MS Team
Hi, I've created an app at https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade I can do oauth using my credentials and getting token to access secure resource through it, but I'm getting empty result when i query the following api https://graph.microsoft.com/v1.0/teams or https://graph.microsoft.com/v1.0/teams though I've teams in my teams account but the response return empty result as follows { "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#teams", "value": [] } also the second api return response below { "error": { "code": "ResourceNotFound", "message": "Resource not found.", "innerError": { "date": "2021-04-22T06:34:22", "request-id": "55e3a10e-6e63-466e-a4ed-c15e2cab56b7", "client-request-id": "f50412d2-6beb-5af8-170c-7ac4fd27c448" } } } Can you please clarify how can i get data from MS teams ? data like teams, groups, channels, chats etc using graph api. Thanks.5.4KViews0likes20CommentsDownload chatMessage attachments
Hello, I am using the Graph API to fetch chatMessages of a particular user (using delegated permissions). I am unable to download attachments of those chatMessages ; a GET query to the contentUrl (https://learn.microsoft.com/en-us/graph/api/resources/chatmessageattachment?view=graph-rest-1.0), returns "401 UNAUTHORIZED" error. The contentUrl looks like : https://{devTenant}-my.sharepoint.com/personal/{userEmail}_onmicrosoft_com/Documents/Microsoft Teams Chat Files/{fileName} The bearer token that I provide comes from this endpoint : https://login.microsoftonline.com/common/oauth2/v2.0/token (and works for any other call to the Graph API). Do you have any idea of how to download attachments ? Thank you in advance, Pierre4.7KViews0likes17Comments