You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You are using the HTTP library (https://docs.gofiber.io/api/app/#test) but some fiber features are not RFC compliant, example with cookies using the " character. You can't use HTTP library if you have to send (and the backend have to receive) a golang json structure.
If you want to stock data in cookies (very practical but non RFC compliant).
How to Reproduce
Make an OAuth2 login and callback entries.
Add data in the state field (for example make a structure).
With a modern navigator, you will see that the cookie works fine.
You will see that it is not possible to handle the test, because HTTP library doesn't support ".
Expected Behavior
The cookie with " are supposed to work.
Fiber Version
v2.52.5
Code Snippet (optional)
// addServiceToUser simulates adding a service to a user by invoking the OAuth callback endpoint.funcaddServiceToUserTesting(app*fiber.App, sessionCookie*http.Cookie) error {
// Simulate generating and setting the statemockState:=StateData{
State: "test-state",
RedirectURL: "",
StoreSessionInURL: false,
}
// Encode the state and redirect URI into JSON.value, err:=sonic.Marshal(mockState)
iferr!=nil {
returnfmt.Errorf("failed to marshall token: %s", err)
}
// Encode to base64 (in order to be able to use it in the backend).encodedState:=base64.StdEncoding.EncodeToString(value)
fullURL:=fmt.Sprintf("/protected/oauth2/noServiceUsedForTesting/callback?code=test-code&state=%s",
encodedState)
// Create the HTTP requestreq, err:=http.NewRequest("GET", fullURL, nil)
iferr!=nil {
returnerr
}
// Attach the session cookie for authenticationifsessionCookie!=nil {
req.AddCookie(sessionCookie)
}
// OAuth handler checks for the state in a cookie, set it herereq.AddCookie(&http.Cookie{
Name: "oauth_state",
Value: encodedState,
})
// Perform the requestresp, err:=app.Test(req, -1)
iferr!=nil {
returnerr
}
...
}
For this part:
// OAuth handler checks for the state in a cookie, set it herereq.AddCookie(&http.Cookie{
Name: "oauth_state",
Value: encodedState,
})
It is mandatory to convert to base 64 in order to handle the " in the backend.
Thanks for opening your first issue here! 🎉 Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord
Bug Description
You are using the HTTP library (https://docs.gofiber.io/api/app/#test) but some fiber features are not RFC compliant, example with cookies using the
"
character. You can't use HTTP library if you have to send (and the backend have to receive) a golang json structure.If you want to stock data in cookies (very practical but non RFC compliant).
How to Reproduce
"
.Expected Behavior
The cookie with
"
are supposed to work.Fiber Version
v2.52.5
Code Snippet (optional)
For this part:
It is mandatory to convert to base 64 in order to handle the
"
in the backend.Checklist:
The text was updated successfully, but these errors were encountered: