Tohid Makari
Tohid Makari

Reputation: 2484

wso2 api manager 3.2.0 OAuth2Service Provided Callback URL does not match with the provided one error?

I faced with following exception when try to login publisher:

in browser :

Registered callback does not match with the provided url.

in console :

OAuth2Service Provided Callback URL does not match with the provided one.

deployment.toml

[server]
hostname = "172.25.129.67"
node_ip = "172.25.129.67"
#offset=0
mode = "single" #single or ha
base_path = "${carbon.protocol}://${carbon.host}:${carbon.management.port}"
#discard_empty_caches = false
server_role = "default"

in service provider

regexp=(https://172.25.129.67:9443/devportal/services/auth/callback/login|https://172.25.129.67:9443/devportal/services/auth/callback/logout)

Could you please help me to solve it?

Upvotes: 0

Views: 420

Answers (1)

Tohid Makari
Tohid Makari

Reputation: 2484

I changed as following and it fixed.

[server]
hostname = "172.25.129.67"
node_ip = "127.0.0.1"

Upvotes: 1

Related Questions