SharePoint Online Section Templates in Site Pages.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
SharePoint Online Section Templates in Site Pages.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
PowerApps Experimental Features
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
Introduction to the ParseJSON experimental function in Power Apps.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
Enable Experimental Features in specific power apps.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
In the below video, we will learn how to send actionable items from power automate flow to the outlook email.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
Yes, you read it right, it is possible to change the Root Site Collection site with another site.
Watch the below video to know how.
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
As of August 17, 2021 Microsoft has stopped support for the Internet Explorer 11 (IE 11) for Microsoft 365 apps and services. As a result, Microsoft recommends using the OneDrive sync app to sync SharePoint files with your computer, rather than using View in File Explorer feature in IE11.
But In some special cases, still some customers asks to use View in File Explorer feature of Modern SharePoint online.
Good news is, from the Microsoft Edge Stable version 93, you can enable the View in File Explorer capability for SharePoint Online Modern Document Libraries.
For this experience to be visible and work for your users, you will need to enable the Microsoft Edge policy “Configure the View in File Explorer feature for SharePoint pages in Microsoft Edge” and update your SharePoint Online tenant configuration.
To enable View in File Explorer feature on your SharePoint online tenant, follow steps given at: Configure View in File Explorer with Edge.
After enabling the feature, you can find the View in File Explorer option by navigating to the Document Library > Select the Library View Menu on the right-hand side > Select View In File Explorer.
While View in File Explorer feature will be available, it is not recommended to use this feature always. Whether you’re using Google Chrome, Microsoft Edge, or another browser, Sync feature is a faster and more reliable method for putting SharePoint files into folders you can see in File Explorer. To learn more, visit SharePoint file sync.
Reference: View SharePoint files with File Explorer in Microsoft Edge
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
There are lots of ways to fetch an update the SharePoint resources.
Today, I am going to provide you a way to access the SharePoint resources using an access token using Postman.
This is a developer friendly tool for handling REST API from any platform.
If you are new to the SharePoint REST APIs, then you can learn more from Get to know the SharePoint REST service.
Now we have some understanding about Post Man tool & SharePoint Rest API endpoints. Now we’ll start testing the SharePoint REST API with this tool.
Let’s take one simple example to fetch a web title using a SharePoint REST API.
The equivalent syntax to retrieve a website’s title is
https://.sharepoint.com/_api/web?$select=Title
After entering the above URL in the text-box in the URL text-box. We will get the Unauthorized exception on accessing the information.
SharePoint Online is very much secured and that doesn’t allow anonymous users to access the information for their site. And hence it resulted in an error message response, after sending the request.
To avoid the Unauthorized exception, we have to add some request header values to the API request. Authentication and Authorization of SharePoint Add-Ins gives the overview of authorizing the Add-ins to access SharePoint resources by the APIs.
SharePoint supports three types of authentication policies:
We require the following information in various requests to authenticate with SharePoint online site.
We need to authorize postman to access SharePoint resources using REST API endpoints.
To do that we will need to pass access token values as a request header.
To get the access-token, we should generate Client Id and Secret information from the site by registering as an App only Add-In in SharePoint site. This is the same as registering an add-in for Provider Hosted Add-In.
I have provided the steps below to get the Tenant Id, Access Token, and data from SharePoint using Postman utility.
https://<sitename>.SharePoint.com/_layouts/15/appregnew.aspx
Click Create button, which registers the add-in and returns the success message with created information.
Save this information safely, we will need that in the following step.
Once the Add-In is registered, we need to set the permissions for that add-in to access the SharePoint data. We will set the Read permission level to the web scope so that we will be able to read the web information.
Now, enter the below xml in the Permission Request.
<AppPermissionRequests
AllowAppOnlyPolicy="true">
<AppPermissionRequest
Scope="http://sharepoint/content/sitecollection/web"
Right="Read"
/>
</AppPermissionRequests>
Click Create button. This will redirect to you page, where we have to trust the add-in to read items from website.
Note: If we want to access site collection or tenant level, we have to add the XML accordingly
Once we registered the Client Id and Secret with the permissions, we are ready to access the SharePoint information from external system or tools.
At first, we have to know the Tenant ID. Follow the below steps to obtain that information from the postman. Postman helps to get the tenant Id by requesting the below URL with an Authorization header
We are interested in two values, realm and client_id from the above response.
Generate the Access Token
In response header, we will get WWW-Authenticate as one of the header and that contains the necessary information required for next step. The realm value contains the tenant id for the SharePoint Online site and clientid value contains the resource information (we’ll use it later).
Headers
Body
After applying the configuration, click Send button. That will returns the response with the Access Token.
Once we are received the access token, its like we got the authorization to access the SharePoint data based on the permission applied in Grant Permission as Add-In section.
We have to pass the access token as “token_type access_token”
Now we have the access token, So we can now pass this token in Authorization header with the SharePoint REST API to get the information.
https://<sitename>.sharepoint.com/_api/web?$select=Title
Headers
The postman utility helps us start the development and test the REST API utility. Using this approach we can update any information of SharePoint which is supported by SharePoint REST API.
Please comment and share this article with your friends and collegues.
Happy SharePointing!!!
courtesy: link
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
The Power Platform is not having a connector for GitHub.
Using this connector, user can create a GitHub repo, create a pull request, merge a pull request and , compare commits, trigger a GitHub actions workflow and much more from Power Apps and Power Automate.
The GitHub connector works perfectly with the GitHub Actions for Power Platform released in preview recently
Read more here
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
SharePoint spaces is a web-based, immersive platform, which lets you create and share, secure and extensible mixed reality experiences.
Building a space is a lot like building a modern site — that is, you create the space and choose options such as structure, background, and theme. Add web parts for your 3D objects, 360° images and videos, 2D images and text, and more.
You can build one or more SharePoint spaces on a new or existing site. We recommend using communication sites because you have more screen real estate to work with, but it is also possible to build a SharePoint space in a team site. When you create a space, you choose options such as structure and background. Then add web parts for your 3D objects, 360° images, 360° videos, 2D images, and more.
To create a space, you must first activate it at the Site level. Go to Settings / Site Information/ View All site settings / Manage site features to activate the Spaces (preview) feature:
Once this feature is enabled, you can create a space on the same level as you create a page. So Space is NOT a web part but it is a more sort of special type of page.
Enable-PnPFeature -Identity 1604b101-3328-4405-b7e0-54ce59b9d124 -Scope Web
Once the space feature is activated.
To get an idea about the SharePoint space, you can explore some of the samples here
I hope you liked this blog. Give your valuable feedback & suggestions in the comments section below and share this blog with others.
courtesy:
Technical Solutions Professional | Modern Workplace Architect Lead | Microsoft 365 | SharePoint | Power Platform | MS Teams | React
Theme by Anders Noren — Up ↑
Recent Comments