firebase / firebase/firebase-admin-node
[FR] Add `returnUserInfo` to Admin SDK
- 主要语言
- TypeScript
- 星标
- 1.7k
- 派生
- 419
- 平均合并
- 3 天 10 小时
- 30 天内合并 PR
- 16
描述
**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
贡献指南
评估
这个 Issue 还没有评估数据。