You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, gitea test redirect_uri via com.IsSliceContainsStr, which requires redirect_uri to be exact the same (ignoring case), which is not flexible.
Hope we can support all / some of those features:
Trim ending slash (e.g. currently http://domain.com/ is not valid for http://domain.com)
Wildcard (e.g. http://domain.com/*)
...
The text was updated successfully, but these errors were encountered:
Git version:Operating system:Database (use[x]
):Can you reproduce the bug at https://try.gitea.io:Log gist:Description
gitea/models/oauth2_application.go
Lines 64 to 66 in d151503
Currently, gitea test
redirect_uri
viacom.IsSliceContainsStr
, which requiresredirect_uri
to be exact the same (ignoring case), which is not flexible.Hope we can support all / some of those features:
http://domain.com/
is not valid forhttp://domain.com
)http://domain.com/*
)The text was updated successfully, but these errors were encountered: