-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On GAE: "pyOpenSSL must be installed to load a private key" #1487
Comments
This is a code-path I didn't anticipate, since in production GAE the code would just use Do you have custom code for using service accounts with Also, I need to just push this functionality into |
Not sure if I understand you correctly, but we're using this code in GAE to setup GCS. Hope it helps:
We're not using the appidentity parameters for dev_appserver. |
Got it. I figured you were using from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
# OR
from oauth2client.contrib.appengine import AppAssertionCredentials
credentials = AppAssertionCredentials([]) RE: "We're not using the Does this mean you use |
I wrote lots of projects that used |
Yeah I am going to push our auth / signing stuff upstream today (finally). Won't drop |
FYI once googleapis/oauth2client#421 is in, we can tear out most of the auth code in |
@dhermes: we're using the same |
@kvdb This should work just fine now. Please let me know if it does not. |
I've tried gcloud 0.10.0 on the local dev_appserver.py. While I've got the same problem as reported in #1436, I've got an additional exception too:
EnvironmentError: pyOpenSSL must be installed to load a private key
That problem seems to be related to PR #1338.
The text was updated successfully, but these errors were encountered: