Tag: google app engine

关于GAE的RoR?

由于Google App Engine很快将完全支持Java : 是否有可能在Google App Engine上运行Ruby on Rails? 或者AppEngine运行时施加的限制会影响JRuby的实现吗? 那么其他语言如Groovy,Clojure,Scheme呢? 是否有任何努力支持JVM中的.net和C#? 我认为这将在webdevelopment上创建一个NEXT级别。

请求的客户未经授权

我正在尝试使用google service account从我的域名获取谷歌用户。 但它会引发错误 Error:”access_denied”, Description:”Requested client not authorized.”, Uri:”” 我的代码 X509Certificate2 certificate = new X509Certificate2(key_path, “notasecret”, X509KeyStorageFlags.Exportable); ServiceAccountCredential credential = new ServiceAccountCredential( new ServiceAccountCredential.Initializer(“publickey.gserviceaccount.com”) { Scopes = scopes, User = “admin@domain.com” }.FromCertificate(certificate)); var service = new DirectoryService(new BaseClientService.Initializer() { HttpClientInitializer = credential, ApplicationName = “appname”, }); service.Users.List().Domain = “domain.com”; Users results = service.Users.List().Execute(); 提前致谢