Great video! Now, how can I send the token when I make an http request that needs it?
@kasimyuksel214 Жыл бұрын
You can use Http Interceptor for your every request ( except login or register etc. with url filter )
@serranopink Жыл бұрын
@@kasimyuksel214 Thanks. I found an example about the interceptor, I was able to implement it. But I really don't know how to prevent the sending of the token in the registration and login urls as you mentioned. Do you happen to know how? You mention something about 'url filter'...
@galaxies_dev Жыл бұрын
In the interceptor you can access the URL and in those cases don't add the token to the header!
@serranopink Жыл бұрын
@@galaxies_dev Thanks for your answer Simon, I was able to implement it with your suggestion. Again, thanks for your videos!
@mkhalidumer Жыл бұрын
Loved u for this
@galaxies_dev Жыл бұрын
Happy to help!
@masterandroid5104 Жыл бұрын
Security it's better than firebase auth?
@galaxies_dev Жыл бұрын
Firebase auth will use a JWT under the hood as well, there is no better - it's basically the same concept.