Email confirmation - strange behavior The Next CEO of Stack OverflowSendGrid email read confirmationWordpress email confirmationAuto-redirect not working after user authenticationHow would you call async method in a method which cannot be async in C# without using .ResultUsing async / await inside .Select lambda.net (dotnet) core webapi and async method - feedback wantedConfirmation Email in aspnetboilerplateASP Core 2.1 Email ConfirmationEmail confirm page missingHow to return a user to application after account creation
How to count occurrences of text in a file?
Why is there a PLL in CPU?
Fastest way to shutdown Ubuntu Mate 18.10
What does this shorthand mean?
Why didn't Khan get resurrected in the Genesis Explosion?
Why do remote companies require working in the US?
Implement the Thanos sorting algorithm
What is meant by a M next to a roman numeral?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Whats the best way to handle refactoring a big file?
Does it take more energy to get to Venus or to Mars?
How to write papers efficiently when English isn't my first language?
Inappropriate reference requests from Journal reviewers
Unreliable Magic - Is it worth it?
Increase performance creating Mandelbrot set in python
How do I solve this limit?
Describing a person. What needs to be mentioned?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
Is it okay to store user locations?
Why did we only see the N-1 starfighters in one film?
Trouble understanding the speech of overseas colleagues
How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?
Email confirmation - strange behavior
The Next CEO of Stack OverflowSendGrid email read confirmationWordpress email confirmationAuto-redirect not working after user authenticationHow would you call async method in a method which cannot be async in C# without using .ResultUsing async / await inside .Select lambda.net (dotnet) core webapi and async method - feedback wantedConfirmation Email in aspnetboilerplateASP Core 2.1 Email ConfirmationEmail confirm page missingHow to return a user to application after account creation
Does anyone have an idea why this is happening to me?
In this case, 'result' is 'Success':
public async Task<IActionResult> TestConfirmInSameRequest(string userId)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...
return Redirect(newLocation);
And in this case, 'result' always is 'InvalidToken' (even when I manually copy the original code and test with it)
public async Task<IActionResult> ConfirmEmail(string userId, string code)
var user = await this._userManager.FindByIdAsync(userId);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...;
return Redirect(newLocation);
protected async Task SendConfirmationEmail(string userId, bool originMobile)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var encodedCode = HttpUtility.UrlEncode(code);
var callbackUrl = $"https://.../api/account/confirmemail?userId=userId&code=encodedCode";
await this._userService.SendConfirmationEmailAsync(userId, callbackUrl);
asp.net-core asp.net-core-identity email-confirmation asp.net-core-configuration
add a comment |
Does anyone have an idea why this is happening to me?
In this case, 'result' is 'Success':
public async Task<IActionResult> TestConfirmInSameRequest(string userId)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...
return Redirect(newLocation);
And in this case, 'result' always is 'InvalidToken' (even when I manually copy the original code and test with it)
public async Task<IActionResult> ConfirmEmail(string userId, string code)
var user = await this._userManager.FindByIdAsync(userId);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...;
return Redirect(newLocation);
protected async Task SendConfirmationEmail(string userId, bool originMobile)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var encodedCode = HttpUtility.UrlEncode(code);
var callbackUrl = $"https://.../api/account/confirmemail?userId=userId&code=encodedCode";
await this._userService.SendConfirmationEmailAsync(userId, callbackUrl);
asp.net-core asp.net-core-identity email-confirmation asp.net-core-configuration
add a comment |
Does anyone have an idea why this is happening to me?
In this case, 'result' is 'Success':
public async Task<IActionResult> TestConfirmInSameRequest(string userId)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...
return Redirect(newLocation);
And in this case, 'result' always is 'InvalidToken' (even when I manually copy the original code and test with it)
public async Task<IActionResult> ConfirmEmail(string userId, string code)
var user = await this._userManager.FindByIdAsync(userId);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...;
return Redirect(newLocation);
protected async Task SendConfirmationEmail(string userId, bool originMobile)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var encodedCode = HttpUtility.UrlEncode(code);
var callbackUrl = $"https://.../api/account/confirmemail?userId=userId&code=encodedCode";
await this._userService.SendConfirmationEmailAsync(userId, callbackUrl);
asp.net-core asp.net-core-identity email-confirmation asp.net-core-configuration
Does anyone have an idea why this is happening to me?
In this case, 'result' is 'Success':
public async Task<IActionResult> TestConfirmInSameRequest(string userId)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...
return Redirect(newLocation);
And in this case, 'result' always is 'InvalidToken' (even when I manually copy the original code and test with it)
public async Task<IActionResult> ConfirmEmail(string userId, string code)
var user = await this._userManager.FindByIdAsync(userId);
var result = await this._userManager.ConfirmEmailAsync(user, code);
var newLocation = ...;
return Redirect(newLocation);
protected async Task SendConfirmationEmail(string userId, bool originMobile)
var user = await this._userManager.FindByIdAsync(userId);
var code = await this._userManager.GenerateEmailConfirmationTokenAsync(user);
var encodedCode = HttpUtility.UrlEncode(code);
var callbackUrl = $"https://.../api/account/confirmemail?userId=userId&code=encodedCode";
await this._userService.SendConfirmationEmailAsync(userId, callbackUrl);
asp.net-core asp.net-core-identity email-confirmation asp.net-core-configuration
asp.net-core asp.net-core-identity email-confirmation asp.net-core-configuration
asked Mar 8 at 12:45
Kalin KrastevKalin Krastev
339216
339216
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
When sending (SendConfirmationEmail) the e-mail you urlencode the token, but in ConfirmEmail you are not decoding the token.
Encoding it just makes sure it can be used in a URL and no breaking characters are in the URL. However, the token you should validate is not the encoded one, its still the token you got before encoding. In other words; you need to decode the token again so its back to the way it was when it got generated.
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063524%2femail-confirmation-strange-behavior%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
When sending (SendConfirmationEmail) the e-mail you urlencode the token, but in ConfirmEmail you are not decoding the token.
Encoding it just makes sure it can be used in a URL and no breaking characters are in the URL. However, the token you should validate is not the encoded one, its still the token you got before encoding. In other words; you need to decode the token again so its back to the way it was when it got generated.
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
add a comment |
When sending (SendConfirmationEmail) the e-mail you urlencode the token, but in ConfirmEmail you are not decoding the token.
Encoding it just makes sure it can be used in a URL and no breaking characters are in the URL. However, the token you should validate is not the encoded one, its still the token you got before encoding. In other words; you need to decode the token again so its back to the way it was when it got generated.
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
add a comment |
When sending (SendConfirmationEmail) the e-mail you urlencode the token, but in ConfirmEmail you are not decoding the token.
Encoding it just makes sure it can be used in a URL and no breaking characters are in the URL. However, the token you should validate is not the encoded one, its still the token you got before encoding. In other words; you need to decode the token again so its back to the way it was when it got generated.
When sending (SendConfirmationEmail) the e-mail you urlencode the token, but in ConfirmEmail you are not decoding the token.
Encoding it just makes sure it can be used in a URL and no breaking characters are in the URL. However, the token you should validate is not the encoded one, its still the token you got before encoding. In other words; you need to decode the token again so its back to the way it was when it got generated.
edited Mar 8 at 13:04
answered Mar 8 at 12:50
Roel AbspoelRoel Abspoel
34627
34627
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
add a comment |
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
The 'code' comes as already decoded. I have also tried decoding it using HttpUtility.UrlDecode(code). - Same result except that in this case when I compare the original generated code and the decoded, they look different as the decoded one is missing '+' symbols that were present before decoding and in the original one.
– Kalin Krastev
Mar 8 at 14:18
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
Also as I've mentioned in the question, I tried copying the 'code' right after it was generated, and then pasting it in the 'ConfirmEmail' method directly, which also results in 'InvalidToken'.
– Kalin Krastev
Mar 8 at 14:23
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063524%2femail-confirmation-strange-behavior%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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