-
Notifications
You must be signed in to change notification settings - Fork 78
Starting with BFF 2.0.1 WithAccessToken leads to error 401 #179
Comments
I suspect you mean upgrading to 2.1.0? In your current use it sounds like you want API calls to be sent to the API even if there is no user token, so anonymously. Is this correct? |
Connecting to this issue as we struggle with the same problem.
Exactly, previously it was possible to use YARP JSON metadata options and access anonymous remote API endpoints. Right now it returns 401. |
@josephdecock Please have a look into this. |
@krilek can you double check your version number please? Are you on 2.1.0? |
Sorry, I didn't got an notification for changes to this request. |
In earlier versions of the BFF, we used YARP v1.x, which doesn't have a mechanism to cancel proxy requests. That meant that if we didn't have an access token we had to fall back to anonymous access. But what we always would have preferred to do (as the default behavior) is what we do in the simple Http forwarder - return a 401 error. Since we've upgraded our dependency on YARP to v2, we now take advantage of its new ability to cancel proxied http requests. This gives us consistency between the two styles of remote API definitions. So when we made this change we were really fixing a long standing design bug. What was missing though, and what is added in the PR linked to this thread, is the ability to add metadata to YARP routes so that they require an optional user access token. |
I'm glad to see, that the missing use case of optional user access token will be supported in the future. Could you provide an example or snippet how to get this working again and work arround the breaking change? |
@josephdecock will be working on the new docs showing you how to use this. We have a patch 2.1.1 with the updated API. |
The PR for the new docs is here. The TL;DR is, in 2.1.1 you can call .WithOptionalUserToken on a yarp route configured with code, or more generally set Duende.Bff.Yarp.OptionalUserToken in the metadata of a yarp route to get optional user access tokens. |
Which version of Duende BFF are you using?
Duende.BFF 2.0.0
Duende.BFF.YARP 2.0.0
Which version of .NET are you using?
.net 7
Describe the bug
We are using a YARP configuration which adds an user access token on redirection. This is working fine up to version 2.0.0 even, if no user has logged in.
"ReverseProxy": { "Routes": { "gProductConfiguratorRoute": { "ClusterId": "gProductConfiguratorCluster", "Match": { "Path": "/gProductConfigExtern.ProductConfigurator/{**remainder}" }, "Metadata": { "Duende.Bff.Yarp.TokenType": "User" } } }, "Clusters": { "gProductConfiguratorCluster": { "Destinations": { "gProductConfigurator/destination1": { "Address": "https://localhost:7105/" } } } } }
After update to BFF 2.0.1 the redirection fails with error 401:
Our code to configure YARP looks like
and for the pipeline
I found an extension method "WithOptionalUserAccessToken()", but if I add this after the last line, I get an error 500:
From our point of view there is a breaking change between version 2.0.0 and 2.0.1. Is there a way of configuration to get back the old behavior? We need an optional user access token to answer generally every request but give detailed information if a user has logged in.
I found no examples to get "WithOptionalUserAccessToken" working. Can you provide a sample for such scenario?
To Reproduce
Use version 2.0.0 with YARP config that adds user access token. Update to version 2.0.1. On same method call get error 401.
Expected behavior
Either "routeConfig.WithAccessToken(TokenType.User);" should add a token optionally like before or provide an example, how to add an optional user access token, please.
Log output/exception with stacktrace
(see above)
With kind regards,
J. Boekhoff
The text was updated successfully, but these errors were encountered: