File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -153,18 +153,18 @@ The JSONObject can look like this:
153153 "invite" : " https://discordapp.com/oauth2/authorize?client_id=123456789012345678&scope=bot" ,
154154 "list_data" : {
155155 "botlist.space" : [
156- < data> ,
156+ { data } ,
157157 200
158158 ],
159159 "lbots.org" : [
160- < data> ,
160+ { data } ,
161161 404
162162 ]
163163 }
164164}
165165```
166166
167- ` < data> ` is the JSON that is returned by the provided Botlist meaning it's different for each site.
167+ ` { data} ` is the JSON that is returned by the provided Botlist meaning it's different for each site.
168168` name ` , ` owners ` , ` server_count ` and ` invite ` is based on the most common appearances of the data.
169169
170170### Botinfo from all Botlists
@@ -174,24 +174,24 @@ The returned JSONObject can look like this:
174174``` json
175175{
176176 "botlist.space" : [
177- < data> ,
177+ { data } ,
178178 200
179179 ],
180180 "lbots.org" : [
181- < data> ,
181+ { data } ,
182182 404
183183 ]
184184}
185185```
186- ` < data> ` is the JSON that is returned by the provided Botlist meaning it's different for each site.
186+ ` { data} ` is the JSON that is returned by the provided Botlist meaning it's different for each site.
187187
188188### Botinfo of a single site
189189With ` .getBotInfo(..., String) ` can you receive the info of a specific site.
190190The returned data depends on the selected site and can be different for each one.
191191
192192### Owners
193193You can call ` .getOwners(...) ` to get the owners of a Bot from all the Botlists.
194- The info is returned as JSONArray and is based on how often the info is provided by the botlists.
194+ The info is returned as ArrayList and is based on how often the info is provided by the botlists.
195195
196196## Exceptions
197197When you post the guild counts you could encounter certain Exceptions.
You can’t perform that action at this time.
0 commit comments