문제

I'm trying to implement a secure google cloud endpoint in python for multi-clients (js / ios / android)

I want my users to be able to log by three ways loginForm / Google / Facebook.

I read a lot of docummentation about that but I didn't realy understood how I have to handle connection flow and session (or something else) to keep my users logged.

I'm also looking for a way to debug my endpoint by displaying objects like Request for exemple.

If someone know a good tutorial talking about that, it will be verry helpfull.

thank you

도움이 되었습니까?

해결책

For request details, add 'HttpServletRequest' (java) to your API function parameter. For Google authentication, add 'User' (java) to your API function parameter and integrate with Google login on client. For twitter integration, use Google app-engine OpenID. For facebook/loginForm, its all on you to develop a custom auth.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top