# How do I see Facebook signups?

**URL:** https://meta.discourse.org/t/how-do-i-see-facebook-signups/91989
**Category:** Support
**Created:** [July 10, 2018, 2:59pm UTC](https://meta.discourse.org/t/how-do-i-see-facebook-signups/91989 "2018-07-10T14:59:32Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![david](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/david/32/157490_2.png) [@david](https://meta.discourse.org/u/david)
#### Post date: [July 10, 2018, 3:08pm UTC](https://meta.discourse.org/t/how-do-i-see-facebook-signups/91989/2 "2018-07-10T15:08:29Z")

</div>

You could use the [Discourse Data Explorer](https://meta.discourse.org/t/data-explorer-plugin/32566) for this.

~~Associations with facebook accounts are stored in the `facebook_user_infos` table, so a query like this should provide a list of users that have connected their facebook accounts:

```SQL
SELECT user_id from facebook_user_infos

```

 ~~ Edit November 2020: data for facebook associations can now be found with the query

```sql
SELECT user_id, last_used FROM user_associated_accounts
WHERE provider_name = 'facebook'

```

---

_[View the full topic](https://meta.discourse.org/t/how-do-i-see-facebook-signups/91989)._
