Firebase detect email verificationiOS push notification: how to detect if the user tapped on notification when the app is in background?Android Firebase cannot refresh email verification statuspolymerfire/firebase-auth email verification not workingExpiry date on verification email with FirebaseFirebase 4.1.3: onAuthStateChange not called after first sign in with email and passwordFirebase Not Capturing Email/Phone from FacebookFirebase Email Verification with Deep Linking (Android)How to get notified in Firebase of email verification?Firebase Dashboard set email verifiedFirebase email/password auth + verification weirdness

Why was this person allowed to become Grand Maester?

Getting UPS Power from One Room to Another

Has there been a multiethnic Star Trek character?

Russian word for a male zebra

Polygon Construction for Specified Number of Interior and Boundary Lattice Points

Sci-fi novel: ark ship from Earth is sent into space to another planet, one man woken early from cryosleep paints a giant mural

Amplitude of a crest and trough in a sound wave?

bash vs. zsh: What are the practical differences?

How to publish items after pipeline is finished?

Why am I getting a strange double quote (“) in Open Office instead of the ordinary one (")?

Electricity free spaceship

Increase speed altering column on large table to NON NULL

What would be the way to say "just saying" in German? (Not the literal translation)

tabular: caption and align problem

How can one's career as a reviewer be ended?

How creative should the DM let an artificer be in terms of what they can build?

Do you have to have figures when playing D&D?

What is the logic behind charging tax _in the form of money_ for owning property when the property does not produce money?

If I leave the US through an airport, do I have to return through the same airport?

Can a human be transformed into a Mind Flayer?

Ordinal analysis and proofs of consistency

Swimming Pool Staff/Patron Structure

How to safely destroy (a large quantity of) valid checks?

Does the new finding on "reversing a quantum jump mid-flight" rule out any interpretations of QM?



Firebase detect email verification


iOS push notification: how to detect if the user tapped on notification when the app is in background?Android Firebase cannot refresh email verification statuspolymerfire/firebase-auth email verification not workingExpiry date on verification email with FirebaseFirebase 4.1.3: onAuthStateChange not called after first sign in with email and passwordFirebase Not Capturing Email/Phone from FacebookFirebase Email Verification with Deep Linking (Android)How to get notified in Firebase of email verification?Firebase Dashboard set email verifiedFirebase email/password auth + verification weirdness






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















When a user verifies their email address, I want to receive some notification on my client app (iOS/Android).



I need this to ensure that I can unlock additional capabilities for those users whose address is verified. How can I achieve this?



Currently, the only way to do this is to call the reload method on the User object. However, it is not an ideal way of dealing with this situation – after all, I have no idea when they would click on the link. So, performing a reload every time my app becomes active seems excessive.



Maybe there is a trigger which I missed?










share|improve this question






















  • Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

    – Frank van Puffelen
    Mar 24 at 23:08


















0















When a user verifies their email address, I want to receive some notification on my client app (iOS/Android).



I need this to ensure that I can unlock additional capabilities for those users whose address is verified. How can I achieve this?



Currently, the only way to do this is to call the reload method on the User object. However, it is not an ideal way of dealing with this situation – after all, I have no idea when they would click on the link. So, performing a reload every time my app becomes active seems excessive.



Maybe there is a trigger which I missed?










share|improve this question






















  • Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

    – Frank van Puffelen
    Mar 24 at 23:08














0












0








0








When a user verifies their email address, I want to receive some notification on my client app (iOS/Android).



I need this to ensure that I can unlock additional capabilities for those users whose address is verified. How can I achieve this?



Currently, the only way to do this is to call the reload method on the User object. However, it is not an ideal way of dealing with this situation – after all, I have no idea when they would click on the link. So, performing a reload every time my app becomes active seems excessive.



Maybe there is a trigger which I missed?










share|improve this question














When a user verifies their email address, I want to receive some notification on my client app (iOS/Android).



I need this to ensure that I can unlock additional capabilities for those users whose address is verified. How can I achieve this?



Currently, the only way to do this is to call the reload method on the User object. However, it is not an ideal way of dealing with this situation – after all, I have no idea when they would click on the link. So, performing a reload every time my app becomes active seems excessive.



Maybe there is a trigger which I missed?







ios swift firebase firebase-authentication






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 20:44









Andriy GordiychukAndriy Gordiychuk

4,32011444




4,32011444












  • Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

    – Frank van Puffelen
    Mar 24 at 23:08


















  • Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

    – Frank van Puffelen
    Mar 24 at 23:08

















Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

– Frank van Puffelen
Mar 24 at 23:08






Email verification happens when the user clicks the link in their mail app. There is no notification from this server-side operation to your client-side app.

– Frank van Puffelen
Mar 24 at 23:08













1 Answer
1






active

oldest

votes


















1














Well, what I do is, each app launch I query the user object for its verification status; if it's not verified I send a verif request right there, if not sent before, and if it is and it's the first time, I show some thank you text and move on. I don't think there's an actual notification you can hook with for when the user clicks the link in the email, but alternatively you could build an admin node function server side to check every now and then for verifications and send pushes to the relevant devices.






share|improve this answer























  • How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

    – Andriy Gordiychuk
    Mar 25 at 0:22











  • Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

    – Sergio Flores
    Mar 26 at 16:50











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328396%2ffirebase-detect-email-verification%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Well, what I do is, each app launch I query the user object for its verification status; if it's not verified I send a verif request right there, if not sent before, and if it is and it's the first time, I show some thank you text and move on. I don't think there's an actual notification you can hook with for when the user clicks the link in the email, but alternatively you could build an admin node function server side to check every now and then for verifications and send pushes to the relevant devices.






share|improve this answer























  • How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

    – Andriy Gordiychuk
    Mar 25 at 0:22











  • Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

    – Sergio Flores
    Mar 26 at 16:50















1














Well, what I do is, each app launch I query the user object for its verification status; if it's not verified I send a verif request right there, if not sent before, and if it is and it's the first time, I show some thank you text and move on. I don't think there's an actual notification you can hook with for when the user clicks the link in the email, but alternatively you could build an admin node function server side to check every now and then for verifications and send pushes to the relevant devices.






share|improve this answer























  • How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

    – Andriy Gordiychuk
    Mar 25 at 0:22











  • Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

    – Sergio Flores
    Mar 26 at 16:50













1












1








1







Well, what I do is, each app launch I query the user object for its verification status; if it's not verified I send a verif request right there, if not sent before, and if it is and it's the first time, I show some thank you text and move on. I don't think there's an actual notification you can hook with for when the user clicks the link in the email, but alternatively you could build an admin node function server side to check every now and then for verifications and send pushes to the relevant devices.






share|improve this answer













Well, what I do is, each app launch I query the user object for its verification status; if it's not verified I send a verif request right there, if not sent before, and if it is and it's the first time, I show some thank you text and move on. I don't think there's an actual notification you can hook with for when the user clicks the link in the email, but alternatively you could build an admin node function server side to check every now and then for verifications and send pushes to the relevant devices.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 24 at 21:37









Sergio FloresSergio Flores

31017




31017












  • How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

    – Andriy Gordiychuk
    Mar 25 at 0:22











  • Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

    – Sergio Flores
    Mar 26 at 16:50

















  • How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

    – Andriy Gordiychuk
    Mar 25 at 0:22











  • Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

    – Sergio Flores
    Mar 26 at 16:50
















How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

– Andriy Gordiychuk
Mar 25 at 0:22





How do you query the user object for its verification status? For me, isEmailVerified property remains false unless I call reload on the user

– Andriy Gordiychuk
Mar 25 at 0:22













Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

– Sergio Flores
Mar 26 at 16:50





Mmm, yes as far as I know, there's just -isEmailVerified-, but so far I've never had the need to check immediately, I just wait till the next app launch and naturally by then, the user object is refreshed... Firebase is a lazy loader, for performance reasons so I can see the issue here

– Sergio Flores
Mar 26 at 16:50



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328396%2ffirebase-detect-email-verification%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해