All Questions
10 questions
0
votes
0
answers
63
views
Why Set-Cookie in the response header is ignored? using httpsCallable from @angular/fire/functions
My goal is to store the session cookie, and use it to create custom token, to share auth between subdomain1.example.com and subdomain2.example.com. If the session cookie is missing, then when user ...
0
votes
1
answer
220
views
Workflow to create Firebase users from Cloud Function
I am creating an Angular app with a Google Firebase backend. I have a many to many relationship between "users" and "clubs" as follows:
User
Club
First Name
Name
Last Name
Member ...
0
votes
1
answer
395
views
How can I create a custom Firebase new user e-mail verification flow into my Angular application?
I am working on an Angular application hosted on Firebase and using Firebase Authentication service in order to handle user registration. When a user sign up in the application I send an e-mail for e-...
1
vote
1
answer
122
views
Cloud functions: oncall function returns null before running chain of promises
I created a cloud function to create a firebase auth user and to record user's data into firestore.
Cloud Function
const admin = require('firebase-admin');
admin.initializeApp();
exports.createUser = ...
0
votes
0
answers
275
views
How can I Authenticate Users on Firebase with an OAuth Implicit Grant Access Token Generated by a Wordpress Plugin?
I have an Angular App which connects to my Wordpress site for authentication. I use the free wordpress plugin from https://wordpress.org/plugins/oauth2-provider/ to validate if a user is signed in to ...
1
vote
2
answers
3k
views
Event triggered when changing a user Firebase Authentication
Detect events from a user Firebase Authentication
In my application developed in Angular along with Node.js and Firebase I need to detect events occurring in users. As inclusion, change and exclusion....
4
votes
1
answer
4k
views
Firebase SDK Token Verification error: auth/argument-error
I'm working in an Angular App with firebase and I'm stuck validating the idToken with the firebase SDK in a cloud function.
It starts when I tried to make a call to an protected endpoint, the user ...
0
votes
0
answers
134
views
http request postman vs angular [duplicate]
have an angular project with a method :
createUSer() {
let params = new HttpParams()
params.append("email","[email protected]")
params.append("password","sdfdfd121")
this.htpClien.get(this....
0
votes
1
answer
431
views
Firebase functions - Frontend authentication
I have a Firebase function i use as a middleware to redirect frontend requests to either static SSR version or the dynamic version of my site.
However I now need to add also logic to change the ...
0
votes
1
answer
672
views
Integrate facebook graph with firebase
I want access to facebook user's original photo size and gender on firebase cloud functions. I was looking graph api but it comes little hard to understand. I can't do that just with firebase as i ...