我在api-manager.xml中添加了自定义应用程序属性,它们正确显示在Store UX中。
我需要从Java访问这些属性的值(我正在编写自定义密钥管理器接口)。这是一个代码片段:
OAuthApplicationInfo oAuthApplicationInfo = oauthAppRequest.getOAuthApplicationInfo();
String tagAttribute1 = oAuthApplicationInfo.getAppAttribute("Tag");
tagAttribute1返回一个空值
如何访问名为“ Tag”的自定义应用程序属性?