0

I am wondering if OAuth.tools provides any sort of API to control its functionality. Does it provide an API?

Travis Spencer
  • 2,231
  • 16
  • 26

1 Answers1

0

OAuth.tools is almost-entirely a client-side web application that runs entirely in the user's browser. This is a really important aspect of its design considering the kind of data it works with. This kind of design doesn't lend itself to programability in the traditional API sense.

That said, you can provide a JWT on the hash of the URL. This will open all existing flows, and add a new JWT decode flow with the provided token. The format of the URL is this:

https://oauth.tools/#jwt=$JWT

An example would be this.

When clicked, this decoding of the token will be shown:

enter image description here

user402843
  • 89
  • 1
  • 9
Travis Spencer
  • 2,231
  • 16
  • 26