How do I get a list of all users from the API?

I see that I can get a list of users using the API using http://discourse.example.net/admin/users.json, but I get only 100 users and I don’t know how the paging for that works? The interface doesn’t seem to display more than 100 users if you go to the admin part.

4 إعجابات

There is no paging.
There is no scrolling.
Currently the only way to get more is to use “Export” :sadpanda:

sad panda indeed :frowning: The exported list doesn’t include the same data, and the way it happens makes it hard to grab programatically.

Any idea if paging for users is wanted by anyone else and if it is something that may be implemented at some stage?

إعجاب واحد (1)

Yes :smile:

No idea.

إعجاب واحد (1)

Any thought if this will be fixed/expanded? We really need API access to access our user lists. Limiting at 100 just doesn’t make sense.

5 إعجابات

Has this been addressed? This would be really useful to my user import script

إعجابَين (2)

I’d also love to see this, to use in scripts that process the whole user base in some way, like this:

إعجاب واحد (1)

Whilst not immediately obvious…

It is possible to get a list of all users via the groups API endpoint available to admins.

You’ll have to iterate over the following groups:

  • trust_level_0
  • trust_level_1
  • trust_level_2
  • trust_level_3
  • trust_level_4

But they do support both limit and offset parameters:

/groups/trust_level_0/members.json?limit=50&offset=50
7 إعجابات

This is a great workaround, but begs the question: Is there a reason these parameters are not supported on /users.json ?

إعجاب واحد (1)

It was recently noted that you only need to iterate trust_level_0:

4 إعجابات

So this API doesn’t give emails too. This means that I would have to get the whole list then interate through and pull each user individually to get all the appropriate info (admin, moderator, etc…) Is that correct

Yes I believe that is correct. I don’t think paging has been added yet to /admin/users.json.

إعجابَين (2)

Sorry the reply so late but that’s the first search result for “get list of all users discourse”…

You can implement read-only endpoints with the Data Explorer plugin.

  • Install the plugin
  • Create your query, with inputs if needed
  • Issue a POST request on /admin/plugins/explorer/queries/[id]/run (with [id] being your query ID)

You can also implement paging with limit/offset inputs I guess, but never tried.

For example, I’m using it to check if a given OAuth user ID is already registered on my instance through discourse-oauth2-basic.

4 إعجابات

إجابة موجزة ومحدثة: تتوفر قائمة مستخدمين قابلة للصفحة بطريقتين:

  1. قائمة عامة للمستخدمين كـ “قائمة دليل”
  2. قائمة مستخدمين حسب “العلم” حيث يجب استبدال {flag} في الرابط بـ قيمة من نوع Enum

أطيب التحيات،
ABK

4 إعجابات

مرحبًا،

قائمة المستخدمين حسب “العلم”

هل يوجد علم لجلب جميع المستخدمين؟ مثل https://{defaultHost}/admin/users/list/all.json

إعجاب واحد (1)

لم أتمكن من جلب جميع المستخدمين باستخدام هذه النقطة النهائية، هل هناك أي تفسير؟

حل آخر قليلاً غير رسمي لكنه يعمل بالنسبة لي:

/admin/users/list/active.json?show_emails=true&page=${page}
إعجاب واحد (1)

استخدام العلم “new” بدلاً من “active” يجب أن يمنحك جميع المستخدمين. فقط قم بالفرز حسب تاريخ الإنشاء تصاعديًا وسيتم عرض جميع المستخدمين مرتبين من الأقدم إلى الأحدث. ستظل بحاجة إلى استخدام التصفح (pagination) لجلب جميع المستخدمين، وإلا فقد تكون الطلبات ضخمة جدًا إذا كان لديك عدد كبير من المستخدمين.

/admin/users/list/new?asc=true&order=created&page=0
إعجاب واحد (1)

للتسجيل فقط:

    for page in itertools.count(start=1):
        userlist = api_get(f"admin/users/list/new.json?page={page}")
        if not userlist:
            break
        for user in userlist:
            print(f"{user['id']:5} {user['username']}")
6 إعجابات