Mar 06, 2023
Asp.Net Core,API Integration
923
BigCommerce is an e-commerce platform that offers a variety of tools for building and managing online stores. If you run a company and want to sell products online, you'll need a platform that makes it easy to create products, manage your inventory, and process orders.
One of the most powerful features of BigCommerce is its API, which allows developers to access and manipulate data within a store.
In this blog post, we'll be focusing on the process of creating products, generating orders and closing them for a company using BigCommerce third party API.
To get started, we'll need to have a few things in place. First, we'll need to have a BigCommerce store set up with API credentials. This will give us access to the API and allow us to authenticate our requests.
Sep 24, 2018
CSharp,Asp.Net Core
2689
In this era of artificial intelligence and the internet of things, it is quite common that everybody is focusing on automation and diminishing human intervention in various processes. Though IVR is one very common solution for the decreasing manpower in supporting system or helpline from the decade, it is quite difficult and lengthy process to integrate it with web solution to do automated processing based on user voice or key input on the call. Twilio comes up with the Twilio Studio which is a very effective solution with drag and drop option to create various flows and initiate HTTP requests to trigger actions based on user input.
Aug 30, 2018
IdentityServer,Asp.Net Core
7933
As we all know IdentityServer is built with the concept of the central identity provider and it is supporting single sign-on by default as part of its main feature, but the single sign out is not coming as a part of inbuilt feature till IdentityServer3. Now they have added support for front-channel and back-channel specification for server-side clients in IdentityServer4. Here, I am going to explain how single sign out works using back-channel configurations.
Jan 18, 2018
Asp.Net,Asp.Net Core
2323
Most of the applications in our internet world are having some automatic task scheduling mechanism like email reminders, expiry notifications etc. For small-scale applications, we can do this type of functionality by running background tasks. Quartz.net is one of the famous libraries to schedule background tasks in .net web applications.