本文介绍了您好,我正在使用Quickblox API在我的应用程序中聊天.但是我有相关的密码长度问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,我正在使用Quickblox API在我的应用程序中聊天.但是我遇到了与密码长度有关的问题.

Hello i am using Quickblox API to chat in my application.But i have issue related password length.

我想设置最小密码长度5.默认情况下,其最小长度为8.是否可以在iOS中使用Quickblox设置密码长度5?如果可能的话,请给我正确的解决方案.

I want to set minimum password length 5.By default its minimum length is 8. Is it possible to set password length 5 with Quickblox in ios?And if possible then give me right solution.

推荐答案

是的,最小密码长度为8.

Yes, min password length is 8.

如果需要5个-例如,您可以添加3个额外的字符

If you need 5 - you can add 3 extra characters, for example

NSString *password = [NSString stringWithFormat:@"pwd%@", realUserPassword];

这篇关于您好,我正在使用Quickblox API在我的应用程序中聊天.但是我有相关的密码长度问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 08:31