Home > database >  Pars url contain # with Iris framework
Pars url contain # with Iris framework

Time:02-05

The microsoft graph authentication response has a url containing # character like below

http://localhost:8000/auth/outlook#code=xxxxxxxxxxxxxxxxxxxxxxx

The problem is to parsing this URL by iris framework and retrieve the code. How should i define the URL structure and how to pars the full URL?

CodePudding user response:

Fragment identifiers are processed purely on the client. They are never sent to the server in the first place. Therefore, you cannot process them on the server.

  •  Tags:  
  • Related