Resources  
  • Implement Scalar UI in .NET API with Authorization OptionFeb 03, 2025. This article covers how to integrate Scalar UI, set up role-based authorization, and implement secure user authentication within your .NET API to ensure smooth, secure interactions.
  • Blazor vs Traditional ASP.NET (MVC/WebForms): A ComparisonFeb 03, 2025. Blazor is a web framework by Microsoft that enables building interactive web apps using C# and .NET. It supports Blazor Server (server-side) and Blazor WebAssembly (client-side) for modern, real-time, and offline web development.
  • Building a Real-Time Chat Application with ASP.NET Core and WebSocketsJan 26, 2025. This article covers setting up WebSocket connections, handling bi-directional communication, and implementing live messaging. Perfect for developers looking to enhance their skills in real-time app development.
  • Building a Real-Time Chat Application with SignalR in Blazor .Net 9Jan 26, 2025. In this article, we'll explore how to create a real-time chat application using SignalR and Blazor Server. SignalR is a library for ASP.NET developers that simplifies adding real-time web functionality to applications. With SignalR, we can enable server-client communication in real-time, which is perfect for a chat app.
  • Understanding the JSON Web Token (JWT)Jan 01, 2025. A small, URL-safe way to represent claims that need to be transferred between two parties is with JSON Web Tokens (JWT). The claims in a JWT can be digitally signed or integrity-protected with a Message Authentication Code (MAC) and/or encrypted.
  • Implement JWT Token in Net Core ApiDec 28, 2024. This article covers the step-by-step process to secure your API using JWT for token-based authentication, ensuring secure communication and proper authorization. Perfect for developers looking to enhance API security.
  • Using SignalR for Real-Time Communication in Blazor ApplicationsDec 09, 2024. SignalR enables real-time communication in Blazor applications, providing instant updates and efficient data transfer. This article explores its integration in Blazor Server and WebAssembly, including setup and practical use cases.
  • How to Use Microsoft Teams for Project ManagementNov 28, 2024. Microsoft Teams simplifies project management by integrating task management, real-time communication, and collaboration. Use Planner for tasks, schedule check-ins, and keep your team organized with chat updates and meetings.
  • Difference Between Delegated and App Only AccessOct 29, 2024. Delegated access allows an application to act on behalf of a signed-in user, requiring user authentication and permission via OAuth 2.0, while app-only access enables an app to operate independently without user interaction, using its own identity and permissions.
  • Explaining IAuthorizationFilter in .NET CoreOct 26, 2024. In this article, we delve into the IAuthorizationFilter interface in .NET Core, exploring its role in implementing authorization logic for web applications. We cover how to create custom filters, manage security policies, and integrate them into ASP.NET Core projects.
  • Customizing HTTP Headers with Middleware in ASP.NET CoreOct 12, 2024. In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific APIs can have unique headers.
  • API Versioning and Enable Authorization in Swagger UI .NET CoreSep 25, 2024. In this article, we explore API versioning and how to enable authorization in Swagger UI for a .NET Core Web API. We’ll discuss best practices for managing API versions, ensuring backward compatibility, and securing your API endpoints.
  • Integrate Azure AD OAuth2 SSO Authentication and RBAC for Kafka-UISep 23, 2024. This article explores the integration of Azure Active Directory (AD), OAuth2, and Single Sign-On (SSO) for secure authentication and Role-Based Access Control (RBAC) for authorization within the Provectus Kafka-UI tool.
  • Explaning SignalR in ASP.NET Core 8Sep 17, 2024. Learn about setting up SignalR hubs, managing connections, and utilizing WebSocket and Server-Sent Events for efficient, scalable messaging in .NET 8 environments.
  • Advance Chat Application with .NET and SignalRSep 02, 2024. Build an advanced real-time chat app with .NET 8, SignalR, and MS-SQL. This guide covers creating a chat app with one-to-one and group messaging, utilizing ASP.NET Identity for user roles and permissions. Learn to set up SignalR for real-time updates, configure MVC, and manage database interactions.
  • Real-Time Pageview Tracking With .NET CoreAug 21, 2024. Learn how to implement real-time pageview tracking in your .NET Core application. This guide covers setting up live monitoring of website traffic, capturing pageview metrics, and integrating real-time analytics into your web app.
  • Deploy Internet Information Services (IIS) on Windows ServerAug 12, 2024. Internet Information Services (IIS) is a Microsoft web server on Windows Server, used to host and manage websites and web applications. It supports various web technologies like HTML, ASP.NET, and PHP, offering features for security, performance, and scalability.
  • Implementing JWT Authentication in a Next.js ApplicationAug 07, 2024. Learn how to implement JWT authentication in a Next.js application with this step-by-step guide. Covering project setup, installing necessary packages, creating utility functions for JWT and password hashing, setting up API routes for registration and login, and protecting routes.
  • Handling Authentication and Authorization in Next.jsAug 07, 2024. Authentication and authorization are crucial for securing web applications. Next.js offers several strategies and libraries to manage user authentication and authorization effectively. This guide covers the essentials of implementing authentication and authorization in Next.js.
  • How to Implement Role-Based Access Control in Next.js?Jul 24, 2024. Implement Role-Based Access Control (RBAC) in a Next.js app to manage user permissions and restrict access based on roles. Define roles in your database, assign them during registration, and use Higher-Order Components (HOCs) to protect routes.
  • Security Best Practices in ADO.NETJul 23, 2024. ADO.NET is a powerful data access technology in the .NET framework, enabling developers to interact with databases. This article explores best practices for protecting sensitive data, preventing SQL injection, implementing secure authentication and authorization, and securing database connections.
  • How To Use SignalR In .NET Core?Jul 22, 2024. Learn how to use SignalR in .NET Core to enable real-time web functionality. This tutorial covers setting up SignalR in an ASP.NET Core application, creating hubs for client-server communication, and integrating SignalR with your frontend.
  • Authentication and Authorization in ASP.NET CoreJul 16, 2024. Learn about implementing robust security in ASP.NET Core with a focus on authentication and authorization. This guide covers ASP.NET Core Identity, claims-based and role-based authorization, JWT, OAuth, OpenID Connect, and best practices for securing web applications and APIs.
  • Real-time Web Applications with SignalRJul 16, 2024. SignalR, a Microsoft library for .NET applications, enables real-time web functionality by allowing server-side code to push updates to connected clients instantly. It abstracts complexities of communication protocols, and supports multiple transport mechanisms like WebSockets and SSE.
  • SignalR: Real-time Web Communication SimplifiedJul 15, 2024. SignalR is an open-source library for ASP.NET enabling real-time, bi-directional communication between server and client. It simplifies the complexity of persistent connections with hubs and automatic transport selection.
  • Real-time Applications with SignalR and AngularJun 21, 2024. Building real-time applications with SignalR and Angular enhances user experiences through dynamic and responsive interfaces. SignalR, an ASP.NET library, enables instant server-client communication.
  • Preventing CSRF Attacks in an ASP.NET Core MVC Jun 13, 2024. Cross-Site Request Forgery (CSRF) is a type of attack that can force a user's browser to send unwanted requests to a web application on which the user is authenticated, potentially leading to unintended actions on the user's behalf.
  • The Art of JavaScript Hoisting: Understanding the Ins and OutsJun 11, 2024. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
  • Mongo DB Authentication and Authorization on WindowsJun 10, 2024. Dive deep into the world of MongoDB authentication. Whether you're a beginner or an experienced developer, this comprehensive guide will teach you everything you need to know about securing your MongoDB database
  • Securing User Sessions: Implementing Multi-Tab/Multi Browser Auto Logout in .NET CoreJun 01, 2024. Implementing auto logout for multi-tab/multi-browser sessions in .NET Core enhances user session security by ensuring that when a user logs out from one tab or browser, all active sessions across different tabs and browsers are simultaneously terminated, preventing unauthorized access.
  • Understanding OAuth 2.0 Authorization Code Grant TypesMay 31, 2024. In this article, we will learn OAuth 2.0's Authorization Code Grant Type, a core component for securing web applications. Learn how this protocol facilitates secure token exchange between clients and servers, ensuring safe API access.
  • Securing ASP.NET Core APIs with Identity and JWTMay 30, 2024. In this article, we'll learn how to implement robust authentication and authorization for your ASP.NET Core APIs using ASP.NET Core Identity and JSON Web Tokens (JWT). We'll go through by setting up ASP.NET Core Identity, configuring JWT authentication, and securing your API endpoints.
  • SignalR: Real-Time Communication for Modern ApplicationsMay 29, 2024. SignalR is a powerful library for adding real-time web functionality to modern applications. It enables seamless, bi-directional communication between server and client, supporting WebSockets and other transport protocols.
  • OAuth: Revolutionizing Access Delegation in Web ServicesMay 27, 2024. OAuth (Open Authorization) is a secure, open standard for access delegation, allowing websites or applications to access user information without exposing credentials, enhancing security, control, and scalability.
  • Implementing Google OAuth in React.jsMay 25, 2024. Implementing Google OAuth in React.js enables secure user authentication by integrating Google's OAuth 2.0 authorization mechanism. This guide covers the steps to set up OAuth in a React application, including configuring Google API, creating React components for login, handling tokens, and managing user sessions.
  • JWT (JSON Web Token): The Future Of Secure Data TransferMay 24, 2024. JSON Web Tokens (JWTs) are a compact, secure method for representing claims between parties, widely used for session management and data transfer since their introduction.
  • Multi-Browser Session Logout in ASP.NET Core Without SignalRMay 19, 2024. The Automatic Multi-Browser Logout feature enhances the security and convenience of your online experience by ensuring that when you log out from one browser, you are automatically logged out from all other active sessions across different browsers and devices.
  • Authentication and Authorization in Angular and C#May 14, 2024. Implementing authentication and authorization in an Angular app with C# backend involves configuring JWT tokens, authentication controller, and role-based authorization. Here's a step-by-step guide for both backend and frontend.
  • Implementing Policy-Based and Role-Based Authorization in .NET CoreMay 06, 2024. In this article, we’ll explore how to set up policy-based authorization and role-based authorization in a .NET Core application. We’ll cover key components such as authentication configuration, default policies, custom policies, and role-based authorization.
  • Unlocking the Power of Linux File PermissionsMay 06, 2024. In this article, we will Explore the potency of Linux file permissions, ensuring security and control over system resources. Master chmod, user/group management, and access levels for robust security.
  • .NET Core : Implementing Authentication & Authorization in .NET Core AppsApr 29, 2024. This article provides a structured guide with code snippets and references for implementing authentication and authorization in .NET Core applications. It covers mechanisms such as Identity framework, JWT, OAuth, and OpenID Connect, offering readers a comprehensive understanding and practical implementation steps.
  • How to Integrate Instant Plugins in the Canvas App?Apr 29, 2024. Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
  • Real-Time Data Transfer with WebSockets and SignalR in .NET CoreApr 22, 2024. In this article, we'll explore how to implement WebSocket functionality using SignalR in a .NET Core application to retrieve data from a concurrent dictionary and push it to clients in real time.
  • Keeping Your .NET Core API Safe and SoundApr 19, 2024. In today's digital landscape, where data is king and APIs (Application Programming Interfaces) reign supreme, ensuring the security of your API in .NET Core is paramount. In this article, we delve into the various aspects of API security in .NET Core and explore best practices to bolster your defenses.
  • Becoming Proficient in C# and ASP.NET: A Roadmap to MasteryApr 08, 2024. From traditional ASP.NET Web Forms to the sleek ASP.NET MVC, and from robust backend solutions using ADO.NET and SQL Server to dynamic front-end interactions with jQuery, AJAX, and more, developers have a plethora of tools at their disposal to create powerful web experiences.
  • Dynamic Redirect URL/ Wildcard URL in Azure App RegistrationMar 15, 2024. Learn how to configure dynamic redirect URLs or wildcard URLs in Azure App Registration for enhanced flexibility and scalability. By leveraging this feature, you can dynamically handle various callback URLs, accommodating different environments or scenarios without manual intervention.
  • Validate Multiple Tokens with Different Providers in ASP.NET 8 APIMar 15, 2024. Learn to validate multiple tokens from different authentication providers in an ASP.NET 8 API. Configure authentication schemes for each provider, accommodating diverse token formats and validation requirements seamlessly.
  • Provide Security Role Access for D365 OutlookMar 14, 2024. In this article, we will customize permissions, manage user access, and enforce Role-Based Access Control (RBAC). Optimize Microsoft 365 settings to tailor access rights, enhancing data protection and organizational compliance.
  • Third-party API Integration in Asp.NET Core Web APIFeb 20, 2024. ASP.NET Core is a powerful framework for building web APIs, allowing developers to create robust and scalable applications. One of the key features of modern web development is the integration of third-party APIs, which provide access to external services and data.
  • Securing Your .NET Projects: Simple Strategies and Real ExamplesFeb 18, 2024. In today's digital world, keeping our software safe from cyber threats is super important. For developers working with .NET projects, it's not just a good idea but really necessary to make sure our apps are strong against potential attacks. Luckily, there are lots of tools and tricks within the .NET world to help us do this.
  • Exploring Filters in .NET CoreJan 17, 2024. .NET Core's flexibility and extensibility are enhanced by filters, allowing developers to inject logic into the request processing pipeline. Types like Authorization, Action, Result, and Exception filters enable modular and reusable cross-cutting concerns.
  • Understanding Google OAuth (Open Authorization)Jan 05, 2024. Google OAuth, an Open Authorization protocol ensuring secure third-party access to user data without exposing credentials. Follow a step-by-step guide to configure OAuth 2.0 credentials via the Google API Console. Explore the advantages of Google OAuth for standardized and secure authentication.
  • ValidateAntiForgeryToken in ASP.NET CoreDec 13, 2023. In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user trusted by a web application. ASP.NET Core provides a built-in defense mechanism against CSRF attacks called ValidateAntiForgeryToken.
  • Securing Your .NET Core APIsNov 18, 2023. This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting. By leveraging these techniques, you can ensure data integrity and prevent unauthorized access.
  • New feature for Authentication and Authorization in .NET 8Nov 15, 2023. Let's check out the cool new things that .NET 8 has added to help you keep your apps secure.
  • Identity API Endpoints based Authentication and Authorization in .NET 8Nov 15, 2023. The second step in adding token-based authentication to ASP.NET Core Identity is to introduce the Identity API endpoints. Basically, this is an API version of the actions that you can perform with ASP.NET Core Identity through the classic web UI. Once you enable the Identity API endpoints, you will get endpoints like /register, /login, /forgotPassword, confirmEmail, etc.
  • OpenID Connect and OAuth 2.0 CognizanceNov 01, 2023. An overview of OpenConnect and OAuth and its usage in the digital world. It introduces a standardized method for verifying user identities, allowing users to authenticate across different sites or applications without the need to create new credentials for each portal.
  • SAML AuthenticationOct 16, 2023. Understanding SAML Authentication: How It Works and Its Role in Modern Security
  • Action Filters in ASP.NET CoreOct 13, 2023. This article provides a comprehensive overview of Action Filters in ASP.NET Core, exploring their types.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web APIOct 03, 2023. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating features such as service discovery, authentication, authorization, load balancing, rate limiting, and logging, you can create a robust and secure gateway that orchestrates communication between diverse microservices.
  • JWT Token Authentication And Role Authorization Using .Net Core 6.0 Web APIsOct 03, 2023. This post covers implementing JSON Web Tokens (JWT) for authentication in an ASP.NET Core Web API. It details creating a new project, using JWT for secure token generation, and implementing role-based authorization without ASP.NET Core Identity.
  • Task Management API with GraphQL in ASP.NET CoreSep 22, 2023. Creating a complete CRUD (Create, Read, Update, Delete) operation using GraphQL in an ASP.NET Core Web API can be quite extensive, so I'll provide you with a simplified example using a "Task Management" application as a real-world use case. In this example, we'll manage tasks with GraphQL.
  • SignalR AutoReconnect in ASP.NET CoreSep 21, 2023. Explore ASP.NET Core SignalR's AutoReconnect feature, simplifying real-time communication. Learn how it ensures seamless connectivity, even in the face of network disruptions, with code examples.
  • Advanced Sorting and Searching in ASP.NET Core Web APISep 15, 2023. Sorting and searching are essential functionalities in many ASP.NET Core Web API applications. To implement advanced sorting and searching in your API, you can follow these steps:
  • Securing ASP.NET Core Web API with JWT Authentication and Role-Based AuthorizationSep 09, 2023. Securing APIs in an ASP.NET Core Web API involves implementing authentication and authorization mechanisms to protect your resources and ensure that only authorized users can access them. In this example, I'll provide a step-by-step guide on how to secure an ASP.NET Core Web API using JWT (JSON Web Tokens) authentication and role-based authorization.
  • Efficient PDF Generation in ASP.NET Core Web API Using DinkToPdfSep 09, 2023. Generating PDF files in an ASP.NET Core Web API is a common requirement, and there are several libraries available to help with this task. In this example, I'll show you how to generate PDF files using the popular library called DinkToPdf, which is a .NET wrapper for the C library DinkToPdf. We'll also follow best practices for structuring your ASP.NET Core Web API project.
  • SignalR to enable real-time communication between clients and the serverSep 04, 2023. SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#Sep 01, 2023. Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying updated on security patches
  • Mastering Dependency Injection and Third-Party IoC IntegrationAug 29, 2023. Dependency Injection (DI) is a design pattern used in software development to achieve loosely coupled components by allowing the injection of dependencies into a class rather than creating them within the class. This promotes better code reusability, testability, and maintainability. In the context of Dependency Injection, an Inversion of Control (IoC) container is a tool that manages the injection of dependencies.
  • Web Application Enhancement: Action Filters for Cross-Cutting ConcernsAug 28, 2023. Action filters are an integral part of many modern web frameworks, including ASP.NET MVC, ASP.NET Core, and others. They allow you to intercept and modify the request and response pipeline for an application's actions or methods. Action filters provide a way to apply cross-cutting concerns, such as authentication, logging, validation, caching, and more, to multiple actions or controllers without duplicating code.
  • Enhancing Security and Access Management with Microsoft EntraAug 24, 2023. Unveiling Microsoft Entra: Elevating Secure Identity and Access Management" is a resource that likely introduces and explores Microsoft Entra, a solution focused on enhancing identity and access management practices within the realm of cybersecurity. The content would likely cover the features, benefits, and implementation considerations of Microsoft Entra to provide organizations with a comprehensive understanding of its capabilities.
  • Building Custom Middleware Components for Logging, Error Handling, and Request/Response ModificationAug 09, 2023. ASP.NET Core to handle cross-cutting concerns like logging, error handling, and request/response modification:
  • Building a Secure .NET Core Web API for Azure AD Integration with SharePoint Online SPFxAug 05, 2023. Learn how to build a secure .NET Core Web API integrated with Azure AD for seamless authentication and authorization with SharePoint Online SPFx web parts. Enhance your application's security and user experience with this comprehensive guide.
  • Token based Authentication and Authorization Grants ExplainedAug 01, 2023. In this article, let us learn about what is a token based authentication and the different authorization grants used in modern day applications
  • Implementing Real-Time Cache Sync with NCache and SignalRJul 27, 2023. From this article, you will learn how to implement the real-time cache sync with NCache and SignalR
  • Client Credentials Flow - Call Web API to API without user interactionJul 18, 2023. This article shows the way to call API to API with user interaction by using Client Credentials Flow.
  • How To Add Authentication In ASP.NET Core 6 MVC Project Using Identity?Jul 11, 2023. In this article, We will be learning how to add authentication in ASP.NET 6 Using Identity service.
  • Policy-Based Authorization in .NET Core API: User, Groups, and PermissionsMay 30, 2023. To create users, groups, and manage permissions using policy-based authorization in a .NET Core API
  • Top 11 .NET Libraries Every Developer Should KnowMay 16, 2023. Are you a .NET developer looking to enhance your coding skills? Here's a list of the top 11 .NET libraries that every developer should know. These libraries offer various functionalities and can greatly simplify your development process. Whether you're working on web applications, data processing, or user interface design, these libraries will be valuable additions to your toolkit.
  • Building a Real-Time Chat Application with .NET Core 7 SignalRApr 14, 2023. Building a Real-Time Chat Application with .NET Core 7 SignalR
  • How To Receive Real-Time Data In An ASP.NET Core Client Application Using SignalR JavaScript ClientOct 10, 2022. This article explains how to connect with SignalR Server hub and receive the message data from the server to the client application using the SignalR JavaScript client in ASP.NET Core 6 application
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • Admin Consent Flow For Microsoft Graph PowerShell ModuleSep 26, 2022. In this article, let’s try to understand basic identity flows involved in Graph PowerShell module and admin consent to interact with Graph PowerShell.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • SignalR BackplaneSep 06, 2022. To send the message to clients connection on multiple servers.
  • JWT Token Creation, Authentication And Authorization In ASP.NET Core 6.0 With PostmanSep 05, 2022. In this article, you will learn about JWT Token Creation, Authentication and Authorization in ASP.NET Core 6.0 with Postman.
  • SignalR Best PracticesSep 01, 2022. In this article, you will learn about SignalR real-time communication Best practices.
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • How To Receive Real-Time Data In .NET 6 Client Application Using SignalRJul 30, 2022. This article explains how to receive real-time data in ASP.NET Core Client application from Server using SignalR with a code example.
  • Get Started With NCache Backplane For .NET Core SignalR Jul 28, 2022. In this article, you will learn how to get started with NCache backplane for .NET Core SignalR.
  • SignalR Introduction And Implementation Using The .NET Core 6 Web API And Angular 14Jul 25, 2022. In this article, you will learn about SignalR introduction and implementation using the.NET Core 6 Web API and Angular 14.
  • SignalR In .NET 6 Using NCache As BackplaneJul 08, 2022. In this article, you will learn about SignalR in .NET 6 using NCache as Backplane.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • OAuth2.0 Authorization With The Azure AD Client Credentials FLow To Secure APIs Of Azure API ManagementMay 25, 2022. In this article, we learn how you can protect your APIs using OAuth2.0 Authorization with the Azure AD Client Credentials flow. When APIs on API Management consumed by other application(End User), we need communicate service to service communication by configuring the OAuth 2.0 authorisation code flow to protect APIs on API Management.
  • How To Create Excel Add-Ins?May 10, 2022. Create an Excel add-in using HTML, CSS, JavaScript, or C# to enhance functionality across various platforms, including Excel for Windows, Mac, and Office 365. Install Yeoman and the generator-office globally, generate a project, and run it using npm commands. Test your add-in in Excel’s Home Tab.
  • How To Use The Identity Framework With Refresh Token ValidationsApr 04, 2022. .Net Core JWT Authentication and Authorization Continues with Identity Framework and refreshes Token Validations in Net Core 6
  • How To Create PowerPoint Add-InsApr 04, 2022. in this article, I will show you how to create PowerPoint Add-ins
  • Authentication In Smart TV App - Device Code FlowMar 29, 2022. Device Authorization flow has become common in applications running on devices like Smart TVs, game consoles, and printers needs authentication. These devices or operating systems don't provide a web browser or have limited input capabilities. In the article below I have explained the details of how the user is authenticated in Smart TV App and tokens are exchanged to confirm the identity of user.