哪些字符串键和值映射属性可以通过 Smack api 的 createAccount 函数放置?
我真的没有尝试过这个,我只是好奇可以使用 AccountManager 的 createAccount 设置哪些属性:
createAccount(String username, String password, Map<String,String> attributes)
我可以放置任何 String 键和值,还是有一个定义的标准?
I really have not tried this, I am just curious what are the attributes that can be set with createAccount with AccountManager:
createAccount(String username, String password, Map<String,String> attributes)
Can I put any String key and value, or there is a defined standard for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些属性是通过调用
检查您提到的 createAccount() 方法的 javadoc 来获取的。在底部。
The attributes are obtained by calling
Check the javadoc for the createAccount() method that you mentioned. At the bottom.
请参阅 AccountManager javadoc
See AccountManager javadoc