Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to add antiforgery token field in UI that'll be used in headers #1412

Open
alvinxiii opened this issue May 21, 2021 · 0 comments
Open

How to add antiforgery token field in UI that'll be used in headers #1412

alvinxiii opened this issue May 21, 2021 · 0 comments

Comments

@alvinxiii
Copy link

I have a few HTTP POST end points that require AntiForgery tokens being attached as a e.g header named RequestVerificationToken.

Sample endpoint:

[HttpPost]
[ValidateAntiForgeryToken]
[Route("[controller]/[action]")]
public async Task<IActionResult> Test([FromBody]Type data)

Whenever I click the Try it out button in swagger UI. I always get 403 forbidden access because it failed at AntiForgery.Validate();

How can I make POST call in swagger UI by passing the AntiForgeryToken?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant