Github Enterprise Oauth redirect URI Mismatch

I have been attempting to configure Grafana to use our Github Enterprise for authentication. I have searched and found a number of solutions for resolving a redirect uri mismatch error but nothing seems to have worked yet. I have defined my root_url, tried the grafana.ini with and without “read:org” in the scope, and practically anything else I could find.

When hitting the Grafana login page I do have the Github button and it takes me to our Github Enterprise page. When I enter my login and password it takes me back to the Grafana server and displays:
‘html/template: “404” is undefined’ on the page

The following is from the logs:
Clear cache
t=2017-11-08T07:50:07-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/ status=302 remote_addr=172.28.89.31 time_ms=1 size=29 referer=
t=2017-11-08T07:50:07-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login status=200 remote_addr=172.28.89.31 time_ms=1 size=8534 referer=
t=2017-11-08T07:50:11-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login/github status=302 remote_addr=172.28.89.31 time_ms=0 size=309 referer=http://ico.xxxx.com:3000/login
t=2017-11-08T07:50:21-0600 lvl=eror msg=“login.OAuthLogin(social login not enabled)” logger=context userId=0 orgId=0 uname= error=callback
t=2017-11-08T07:50:21-0600 lvl=eror msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login/callback status=500 remote_addr=172.28.89.31 time_ms=0 size=34 referer=
t=2017-11-08T07:50:21-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/favicon.ico status=404 remote_addr=172.28.89.31 time_ms=1 size=8440 referer="http://ico.xxxx.com:3000/login/callback?error=redirect_uri_mismatch&error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fenterprise%2F2.11%2Fv3%2Foauth%2F%23redirect-uri-mismatch&state=%2BEzMrxjwoT%2B0nN%2BaykFqdWYCmQzFZDJgkO9Rvqe3Tcw%3D"

Second try (without clearing cache)
t=2017-11-08T07:51:28-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/ status=302 remote_addr=172.28.89.31 time_ms=0 size=29 referer=
t=2017-11-08T07:51:28-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login status=200 remote_addr=172.28.89.31 time_ms=1 size=8534 referer=
t=2017-11-08T07:51:28-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/ status=302 remote_addr=172.28.89.31 time_ms=0 size=29 referer=
t=2017-11-08T07:51:28-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login status=200 remote_addr=172.28.89.31 time_ms=1 size=8534 referer=
t=2017-11-08T07:51:31-0600 lvl=info msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login/github status=302 remote_addr=172.28.89.31 time_ms=0 size=309 referer=http://ico.xxxx.com:3000/login
t=2017-11-08T07:51:32-0600 lvl=eror msg=“login.OAuthLogin(social login not enabled)” logger=context userId=0 orgId=0 uname= error=callback
t=2017-11-08T07:51:32-0600 lvl=eror msg=“Request Completed” logger=context userId=0 orgId=0 uname= method=GET path=/login/callback status=500 remote_addr=172.28.89.31 time_ms=0 size=34 referer=http://ico.xxxx.com:3000/login

This is the github config from my grafana.ini:
root_url = http://ico.xxxx.com/

#################################### Github Auth ##########################
[auth.github]
enabled = true
allow_sign_up = true
client_id = client id from Enterprise Github
client_secret = client secret from Enterprise Github
scopes = user:email, read:org
auth_url = https://github.xxxx.com/login/oauth/authorize
token_url = https://github.xxxx.com/login/oauth/access_token
api_url = https://github.xxxx.com/api/v3
;team_ids =
;allowed_organizations =

Any assistance would be most appreciated.

The redirect URL you specified in Github must be wrong:

Looks like you specified this as return rul

http://ico.xxxx.com:3000/login/callback

should be:
http://ico.xxxx.com:3000/login/github

Also your root_url: is
root_url = http://ico.xxxx.com/

but this does not look correct as you seem to access via port 3000, there is no port 3000 in your root_url

1 Like

Thanks. That fixed 2 of the 3 issues I had. I also left off the “/user” from the api_url. After adding that everything is up and running.

I should not have veered from the Grafana documentation when I started having issues. I removed the definitions above that fixed it. RTFM and follow it, right? Thanks again.