Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-12 Thread 'Ernesto Contreras Pinon' via Google App Engine
Can you share the full stack trace you receive when trying to authenticate? It might help clarify the problem. The Google Auth API reference shows that you can use the "AuthorizedSession" class to create an authenticated session

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-09 Thread 'David Brogdon' via Google App Engine
Standard environment. Client app->App Engine App->Other services is the logic flow. Client is Python code. I am trying to use the service account key to request a token so that my client app and submit a request to my App Engine App (controller/proxy/etc). Code method below: from

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-09 Thread 'David Brogdon' via Google App Engine
This is what I am trying to do based on the GCP docs. I just need to know how to get the token from GCP to use in my client-side app so that it can make requests to my App Engine app. Do you have an example that simply gets a token by using the service account key? Thanks On Thursday, May 5,

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-06 Thread 'Osvaldo Lopez Acuña' via Google App Engine
Please share if you’re using the Standard or Flex environment, in which programming language is your App (including version), what type of service account you have, any related code or settings that you have tried and the complete error and logs. Meanwhile here’s the general App Engine’s

Re: [google-appengine] How to structure credentials in requests to App Engine App

2022-05-05 Thread Anatoli Trifonov
Usually you need to call google api to get token using your service account key. Then use token in https request header. It does depend on how your app engine app is configured though in terms of authentication. Sincerely, Anatoli Trifonov On Thu, May 5, 2022 at 12:06 AM 'David Brogdon' via

[google-appengine] How to structure credentials in requests to App Engine App

2022-05-05 Thread 'David Brogdon' via Google App Engine
I am trying to figure out how to authenticate a desktop app to my App Engine app in order to send HTTP requests to my App Engine App. I have read all the documentation I can find but what I really need to know is, *how do I feed my service account key info into my http request so that my App