Use Online tool such as https://jwt.io/ which allows you to decode, verify and generate JWT.
You will find the decoded value in payload data section.
My technical problem & its solution
Use Online tool such as https://jwt.io/ which allows you to decode, verify and generate JWT.
You will find the decoded value in payload data section.
You can add your own stencil to the Azure template e.g I created a new stencil as below. You can also add some constraints or property to the Azure functions stencil.
If you are working on ASP.net web application which is hosted in a Service Fabric Cluster, you might have come across the pain in debugging these application. Luckily there is an alternative to avoid the hassle in setting up service fabric development environment in the local machine. Below changes to your code in Program.cs file will help you debug your ASP.Net web application locally.
Program.cs file in ASP.net web application
Console application that prints formatted JSON from a json string. "JValue.Parse(jsonString).ToString(Formatting.Indented)" can be used in you web application as well.
using Newtonsoft.Json;using Newtonsoft.Json.Linq;using System;namespace ConsoleAppTryOut{class Program{static void Main(string[] args){string jsonString = "[{\"Question\":{\"QuestionId\":49,\"QuestionText\":\"Whats your name?\",\"Answer\":\"xyz\"}},{\"Question\":{\"QuestionId\":51,\"QuestionText\":\"Are you smart?\",\"Answer\":\"Yes\"}}]";Console.WriteLine(JValue.Parse(jsonString).ToString(Formatting.Indented));Console.Read();}}}
The issue is at the Microsoft end. They seem to be working on it and the fix is available in the Visual Studio 2019 preview version - https://visualstudio.microsoft.com/vs/preview/ .
Below is the link to the detailed discussion in developer community blog.