Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1828 Widoki

For example: When users attempt to access 'host/aaa/bbb/ccc/ddd', after successful authentication by the OAuth provider, they should be redirected to 'host/aaa/bbb/ccc/ddd'. 

However, it redirects to  'host/web' every time. After examining the source code, I found that when constructing the authentication URL, the state parameter is included, but the "r" key in the state dictionary fails to retrieve the correct redirect URL. Therefore, it defaults to "web" every time. 
I have debugged the auth_oauth module, before redirecting to the oauth provider, the

r​ key from the state​ dict always keep default value('web'), that lead to the problem. Is this a bug or anything? 

class OAuthLogin(Home) #from auth_oauth controller
def get_state(self, provider):
redirect = request.params.get('redirect') or 'web'

# redirect: 'web'
#The request.params dictionary is an empty dictionary.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
maj 25
18037
4
lip 17
9113
1
sty 25
1844
0
wrz 24
1232
1
wrz 24
1291