Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add JIRA OAuth to my WebApp

I am developing a web app. And I would like to add JIRA based Authentication to the app. Just like "Login with Google" or "Login with Facebook", I am trying to add "Login with JIRA". I am following this article: https://developer.atlassian.com/server/jira/platform/oauth to configure OAuth using the "Application Link". In Step 2, at the fourth dotpoint, the user will be redirected to JIRA and will be asked to allow access. Now we will get the verification token. In normal OAuth flows like "login with Google", we won't get this verification token. We are automatically redirected to the web app. So what is this Verification token? And how can I avoid this step and redirect the users to my web app after the access is approved?

like image 576
lch Avatar asked Mar 16 '18 21:03

lch


People also ask

How do I enable OAuth?

Go to the Google API Console OAuth consent screen page. Add required information like a product name and support email address. Click Add Scope. On the dialog that appears, select the scopes your project uses.


1 Answers

Verification step is mandatory in OAuth1

like image 112
lch Avatar answered Oct 03 '22 19:10

lch