firebase / firebase/firebase-admin-node

[FR] Add `returnUserInfo` to Admin SDK

Offen
#2,573 1 Kommentar 0 Reaktionen 1 zugewiesene Person Beansprucht von @lahirumaramba Auf GitHub ansehen
api: auth type: feature request
Vorherrschende Sprache
TypeScript
Sterne
1.7k
Forks
419
Ø Merge
3 T. 10 Std.
Gemergte PRs (30 T.)
16

Beschreibung

**Is your feature request related to a problem? Please describe.**
We currently cannot count the number of users using the Firebase Admin Auth SDK. However, this is available in REST API with more boilerplate.

**Describe the solution you'd like**
Add a `returnUserInfo` function to the Firebase Admin Auth SDK.

**Describe alternatives you've considered**
Running the REST API manually:
```ts
const url = `https://identitytoolkit.googleapis.com/v1/projects/${projectID}/accounts:query?alt=json`;
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${token.access_token}`
},
body: JSON.stringify({
"returnUserInfo": false,
"expression": []
})
};

return await fetch(url, options).then(response => response.json());
```

**Additional context**
Should be simple to add.

J

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.