Question
Adobe Sign Oauth 2 popup login button not working
I'm working on a front end React application that requires OAuth 2 authentication for Adobe Sign. I'm able to open a popup with a login screen for Adobe Sign like so:
axios.get(`https://secure.na3.adobesign.com/public/oauth/v2?redirect_uri=${redirect_uri}/auth&response_type=code&client_id=${client_id}&scope=user_login`)
.then(res => {
// open new window
var myWindow = window.open('', 'newWindow', "width=500,height=700");
// render html from response in new winsow
myWindow.document.body.innerHTML = res.data
}The issue is that the login button does not do anything after entering my credentials. The redirect URI in the parameters is listed in my application settings as a redirect URI, so it should be redirecting the user to that uri with the authorization code.
Also of note -- the "signup for a free trial" button in the popup works, but the "forgot my password" button also seems to be disabled.
