问题描述
我目前正在尝试使用Attask的API拔出基于字符串参数的用户列表,使用name_Mod包含。
I'm currently trying to use Attask API's to pull out a list of users based on a string parameter, using the name_Mod "contains".
到目前为止好,我可以拉回来一个用户名列表和它们对应的ID,但我发现,这个API似乎是区分大小写的。
So far so good, I can pull back a list of usernames and their corresponding ID's but I've found that the api appears to be case sensitive.
例如,我给它的参数丹......
For example, I give it the parameter "Dan"...
的$$LIMIT=2000&name=Dan&name_Mod=contains&fields=ID,name\"
"https://wibble.attask-ondemand.com/attask/api/user/search?sessionID=wibble&$$LIMIT=2000&name=Dan&name_Mod=contains&fields=ID,name"
...我得到丹尼尔·布朗
...and I get results like "Daniel Brown"
我给它丹......
I give it "dan"...
的$$LIMIT=2000&name=dan&name_Mod=contains&fields=ID,name\"
"https://wibble.attask-ondemand.com/attask/api/user/search?sessionID=wibble&$$LIMIT=2000&name=dan&name_Mod=contains&fields=ID,name"
...我得到瑞秋乔丹的结果,但没有丹尼尔·布朗。
...I get results like "Rachael Jordan", but no "Daniel Brown".
有没有办法告诉Attask,我不在乎区分大小写?为了给我两个结果让我发愁吗?或者,如果存在解决这个特殊限制的一种方式?
Is there a way to tell Attask that I don't care about case sensitivity? To just give me both results and let me worry about it? Or a way around this particular limitation if it exists?
推荐答案
还有其他 MOD
名为 cicontains
其中, CI
办法区分大小写
。你可以使用它来代替。
There is also other MOD
named cicontains
where ci
means case insensitive
. You can use it instead.
这篇关于Attask API用户名搜索区分大小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!