x-google-backend set to disable_auth in the yaml spec. This however will disable firebase user authentication, correct?
What if one requires both.
Suppose one makes a request to the server using the token and if valid passes the token to the backend function so that it can be decoded to extract say the customer id which is required for processing. How does one accomplish that? Thanks
--
You received this message because you are subscribed to the Google Groups "Google Cloud Endpoints" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-endp...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-endpoints/9cdc8605-5d87-4279-850c-0e4001a290bd%40googlegroups.com.
user_info = request.headers['X-Endpoint-API-UserInfo']
#print(4, user_info)
if(user_info):
data = base64.b64decode(user_info + '==') #padded it with two =
#print(5, data)
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-endpoints+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-endpoints/9cdc8605-5d87-4279-850c-0e4001a290bd%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-endp...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-endpoints/9cdc8605-5d87-4279-850c-0e4001a290bd%40googlegroups.com.
--
--
You received this message because you are subscribed to the Google Groups "Google Cloud Endpoints" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-endp...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-endpoints/425acedf-ebcd-4390-825f-0ddb9e9664ad%40googlegroups.com.