java – 如何在使用Google Account UserService时更新App Engine应用程序名称

我有一个现有的App Engine( Java)应用程序,我们使用 UserService对我们的用户进行Google帐户身份验证.

用户点击以允许访问其Google帐户时,我们想要更新显示在此屏幕上的应用程序名称

enter image description here

我很确定它是旧App Engine控制台/设置屏幕中的一个选项,但我无法在新设置屏幕中找到它.

有谁知道这个设置被移动到哪里或如何更新应用程序名称

另外,如果任何App Engine团队成员跟踪此标记,App Engine是否正常?有人测试过吗?我有点紧张!这是我的设置屏幕在新的云控制台中的显示方式:

enter image description here

解决方法

从Users Java API Overview doc的 Signing in and out部分:

If your app uses Google Accounts or Google Apps for authentication,the name of your application appears on the sign-in page when the user signs in to your application,using the application name you chose when registering the application. You can change your application name in the Google Cloud Platform Console 07001. Click on the pencil icon for the project you want to rename.

相关文章

HashMap是Java中最常用的集合类框架,也是Java语言中非常典型...
在EffectiveJava中的第 36条中建议 用 EnumSet 替代位字段,...
介绍 注解是JDK1.5版本开始引入的一个特性,用于对代码进行说...
介绍 LinkedList同时实现了List接口和Deque接口,也就是说它...
介绍 TreeSet和TreeMap在Java里有着相同的实现,前者仅仅是对...
HashMap为什么线程不安全 put的不安全 由于多线程对HashMap进...