code samples
8 TopicsHow to: Create your own Family Video Room using Azure Communication Services
If we learnt one thing in 2020, it’s how to use video conferencing to replace in-person meetings. Nowhere has this been more obvious (to me) than family meetups. Sure, I’m doing more conference calls for work, but I’ve always done conference calls for work. I’ve never done them for catching up with my extended family, though. Skype, Teams, Zoom, HouseParty – I don’t know about you, but we’ve tried them all. They all have their advantages and disadvantages. As a developer, I was left thinking “I wonder if I could do something different: something that’s just right for our family, with just the stuff we need, and easy enough for everyone to use”. Post continues at: How to: Create your own Family Video Room using Azure Communication Services without writing any code (if you don’t want to) | The thoughtstuff Blog where I talk about how I used the Azure Communication Services sample code, with some modifications, to create a family video room, secured with a PIN. The blog contains links to a GitHub repository you can use as a template to create your own family video room, powered by Azure Communication Services!767Views2likes0CommentsRest API to get recently modified documents
I am trying to use the delve/rest API to get the recently modified documents for a logged in user. This has worked in the past, but now the results seem to be off. For my user account, it will only return 1 result no matter what I do. This is what I have used in the past: var queryUrl = _spPageContextInfo.webAbsoluteUrl + "/_api/search/query?querytext=%27(*)+AND+(FileExtension:doc+OR+FileExtension:docx+OR+FileExtension:ppt+OR+FileExtension:pptx+OR+FileExtension:xls+OR+FileExtension:xlsx+OR+FileExtension:xlsm+OR+FileExtension:pdf)%27"+ "&SelectProperties='Title,FileExtension,Path,ParentLink,LastModifiedTime,ServerRedirectedURL,SPWebUrl,SiteTitle'"+ "&clienttype='ContentSearchRegular'"+ "&properties=%27GraphQuery:ACTOR(ME\\,action\\:1003),GraphRankingModel:{%22features%22\\:[{%22function%22\\:%22EdgeTime%22}]}%27"+ "&rankingmodelid='0c77ded8-c3ef-466d-929d-905670ea1d72'"+ "&rowlimit=10"; Did something change? Is this endpoint not correct?2.5KViews1like1Comment