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
Now we have methods like /email/subscribe, /email/confirm and these API methods implemented as POST and PUT. But now they are getting parameters from query string.
I think they should get params from request body because it is usual way to pass data over POST/PUT requests. Also, it will be good to send an email/token as is without URL encoding.
The text was updated successfully, but these errors were encountered:
@akellbl4, the change is merged. Feel free to change the frontend calls to utilise the body. tkn became token in the body, and everything else stayed the same.
Now we have methods like
/email/subscribe
,/email/confirm
and these API methods implemented as POST and PUT. But now they are getting parameters from query string.I think they should get params from request body because it is usual way to pass data over POST/PUT requests. Also, it will be good to send an email/token as is without URL encoding.
The text was updated successfully, but these errors were encountered: