Authentication is one of the core components of application security. It seeks to ascertain the identity of users and systems involved in the application. In contemporary web and mobilization tendencies, authentication is carried out mainly through tokens and keys. Let us probe into advanced mechanisms used in the most common of them all: OAuth: A protocol for token sharing among […]
Mastering Authentication: OAuth, JWT, and API Keys
Exploring Built-In API Routes in Next.js for Dynamic Web Apps
When building web applications, there’s always the challenge of balancing backend and frontend development. Sometimes, you want to handle everything in one place without setting up an entirely separate server just to fetch or manipulate data. Enter Next.js API routes, a built-in feature that allows developers to create a backend-like API within their Next.js app itself, without worrying about complex […]
Implementing API Calls Using Redux Toolkit in React Native
Redux Toolkit simplifies the process of managing state in React applications by providing built-in tools like `createSlice`, `createAsyncThunk`, and `configureStore`.This guide will show you how to integrate API calls using Redux Toolkit in a React Native application. 1. Setting Up the Redux Toolkit in Your React Native Project Before we start, make sure you have, install the necessary dependencies: 2. […]
Mastering Mobile App Performance: Strategies for Speed, Efficiency, and User Satisfaction
It appears that the performance of mobile apps has a strong relation to the user satisfaction. User engagement is characterized by its speed and ability to be actively used on low-energy devices. Apps that are not optimised well end up being abandoned, uninstalled and the users give bad feedback. This document provides guidance on methods of enhancing performance within a […]
MFA (Multi Factor Authentication) Authentication using PowerShell in SharePoint online
Now a day’s authentication is the most important factor in a cloud environment. Many of the organizations are utilizing SharePoint Online as their Content Management System, it is basic that the delicate information does not slip into false hands. Therefore, Multi-Factor Authentication for Office 365 becomes possibly the most important factor. Multi-factor authentication is a two-step process. In addition to […]
Set List Properties By WebRequest
There are many ways in CSOM to set the list properties of a SharePoint site but there are a few properties which we can’t set directly from list object. In this blog, I will explain how to set those properties using WebRequest. There are many ways in CSOM to set the list properties of a SharePoint site. But there are […]
How to create structural navigation nodes both in quick launch and top navigation node
Sharepoint customizes navigation feature so that user can navigate to a different location and access them quickly. You can add, edit, or remove links on the left-hand menu (Quick Launch menu), the top menu (Top Navigation Node) through edit links. In this blog, we are going to create structural navigation node that is root node having subnodes in both top […]
Identify The Modern Pages And Copy Them To Another Site Collection
In this blog, I am going to perform two actions – Identify if a page is a modern page or not. Migrate or copy that modern page (including its content) to another site collection or site (destination location) I am going to accomplish these tasks by using CSOM (Client Object Model). After identifying the modern page, I will copy the […]
Wildcard search of Users using CSOM in SharePoint
In this blog, I will explain how to find users using ClientPeoplePickerSearchUser class. There are many ways in CSOM to get the users from SharePoint site or web but I did not find any proper way to perform wildcard search of users from SharePoint site using CSOM. For e.g lets, I want to find all users present in site collection […]
Add and Remove Site Columns from Site Content Type
In this blog post, I am going to add and remove site columns in existing site content type. Content types empower you to arrange, oversee, and handle content reliably across your sites. To view all content types used in the site collection. Open SharePoint site Navigate to site settings ->Under Web designer galleries -> Click Site content type or navigate […]