0
During the process of authorising an application via Implicit Flow
in Jasmin it is possible to pass some extra information in the request so that it is included in the redirect uri
when this is called?
I’ve tested with query parameters
on its own redirect uri
but Jasmin misses the message invalid redirect uri
which leads me to assume that Jasmin makes a direct comparison between the address passed by us and what is configured in Nitrogen.
What is intended with this process is to add some context to the process to make it easier to map when redirect is executed.
In this case it makes no sense to use
Implicit Flow
so I can only useClient Credentials
since there are no more options. The problem in this case is that it requires a relatively large amount of manual steps such as associating the application to the subscription, copying the id and id Subscription, and making sure everything checks out. There is no simpler alternative to authorize external applications to access my Jasmin subscription?– João Madureira
Not knowing what you want to do nor the type of application should take into account that this flow exposes the secrets to users. is a flow typically used in Machine-Machine scenarios.
– Sérgio Sereno
What I want is relatively trivial: I have a service that I make available to Jasmin customers for process automation. For this I intend to use the Jasmin web API to read some information. To have access to this information you need to authorize my service to access your subscription. Nor
Implicit Flow
norClient Credentials
make sense of what you’ve described for what’s leftApplication Grant
which is not available. There is also the problem of knowing which are thesubscription id
andaccount id
for the Web API that are not available at any time of the process.– João Madureira
In parts, if you have a web app the flow is the
Implicit flow
. I don’t understand how to pass more on the application. The goal is to be allowed to then do the applications to the application. Asubscription id
andaccount id
should be configured in the app.– Sérgio Sereno