i am using javascript to test my web app to battle.net server.
I logged into my battle.net account to grant user permission based on scopes of my authorization uri.
I see the permission binded to my battle.net account setting after granting.
After being redirected to my redirect uri , i get a “connection is not secure error” from my browser. Why does this happen?
your redirecting to http not https
@Ulminia
Does that mean i need to create a https web server entirely and just discard my http server ?
you shouldn’t have too you should be able to click thru and get the data to send back to your server, but adding ssl to your server should not be that hard
I deleted the permissions from scopes from my account so i can restart the process
Then I also change authorization uri to be (https oauth.battle dot net ) and after the code redirects to the permissions…i still get the connection is not secure browser message after i grant the permissions.
you will unless you use a https url on your server for your redirect url as i said tho their should be a proceed button you can click thru for testing but its said to use https for redirect urls