Thank you for the reply. I will file an issue there and keep you updated with what I find out or learn.
I also tried another server example <https://github.com/google/earthengine-api/tree/master/demos/server-auth>, I got the exact same error. Since I am using the same earth engine library, it might be an issue with that API. When I know more I will post in the earth engine developers forum as well. Because as of now I feel that I am guessing a lot :) During the weekend I will also try to run the examples in a linux environment, if it is a Earth engine API issue, I guess it might not work there as well. Best regards //Michael On Friday, September 23, 2016 at 1:49:02 AM UTC+2, Nick (Cloud Platform Support) wrote: > > Hey Michael, > > It appears you found an issue in the "trendy lights" demo. You should file > an issue on the github repo and link this thread for context. It seems you > did indeed find the source of the issue in the changed name of the function. > > Cheers, > > Nick > Cloud Platform Community Support > > On Wednesday, September 21, 2016 at 10:05:44 AM UTC-4, Michael Johansson > wrote: >> >> *Update:* >> This seems to be an issue with how the authentication is done in the >> example. It seems that it has changed since the example was written. >> >> As a newcomer to the App engine, this is pretty confusing to wrap my head >> around. >> Maybe it is really simple. I have at least been trying to figure out how >> I can change the code in _helpers.py >> But instead of : >> AttributeError: 'module' object has no attribute >> 'SignedJwtAssertionCredentials' >> I get: >> AttributeError: 'module' object has no attribute >> 'ServiceAccountCredentials' >> >> What I changed was: >> if key_file: >> key_data = open(key_file, 'rb').read() >> return oauth2client.ServiceAccountCredentials( >> email, key_data, oauth.SCOPE) >> >> Before it was: >> >> if key_file: >> key_data = open(key_file, 'rb').read() >> return oauth2client.client.SignedJwtAssertionCredentials( >> email, key_data, oauth.SCOPE) >> >> I was trying to follow recommendations from this >> <http://stackoverflow.com/questions/35634085/attributeerror-module-object-has-no-attribute-signedjwtassertioncredentials> >> >> on github >> I've also been trying to understand the changes as they are explained >> here: https://github.com/google/oauth2client/issues/401 >> >> Maybe I'm way off here and the change is a pretty naive try to solve >> this... >> >> //Michael >> >> -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/1fd6f57c-0559-4a54-8ace-6578d38a9d09%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
