Django openid authentication with google

I am browsing authentication through google.

I donโ€™t understand how this works: http://code.google.com/apis/accounts/docs/OpenID.html#Samples If I make this second request, entering the data as one URL with the parameters into the browser, I will return to the XML file. Should I not return nr3 sample response?

Can someone explain this to me?

The problem is that I am trying to sort some third-party application that uses google openid authentication and does not receive email with verified users, as in the answer of sample 3.

Alan

PS I read similar questions and their answers and looked at pages such as:

+4
source share
1 answer

Which XML file?

Remember that such a checkid_setup request checkid_setup not that your application is intended for direct connection, it is a request sent from the user's browser. Thus, the answer will be something like a browser for parsing, prompting the user to log in if necessary, perhaps asking the user for permission or what values โ€‹โ€‹he should send back, and only after all this sends the redirection back, as in sample response.

0
source

Source: https://habr.com/ru/post/1304081/


All Articles