How to proceed when redirected to page after successful sign in with POST method

I have signed in a website using R 3.5.2, and this seems to be gone well both using rvest_0.3.4 and httr_1.4.0, but then I get stuck into a redirecting page which, on the browser (Chrome), is visualized only for a few secs after I hit the button "Login!".

The problematic step seems to be a form method="post" input type="hidden" which I don't manage to submit from R.

URL of the sign in CDP page

signin <- "https://www.cdp.net/en/users/sign_in"

rvest

library(rvest)

user.email <- "my_email"
user.password <- "my_password"

signin.session <- html_session(signin)
signin.form <- html_form(signin.session)[[1]]
filled.signin <- set_values(signin.form, 
                            `user[email]` = user.email, 
                            `user[password]` = user.password)

signed.in <- submit_form(signin.session, filled.signin)
read_html(signed.in) %>% html_node("form")

httr

library(httr)

login <- list(
    `user[email]` = "my_email",
    `user[password]` = "my_password",
    submit = "Login!")

signed.in.post <- POST(signin, body = login, encode = "form", verbose())
http_status(signed.in.post)

content(signed.in.post, as = "parsed")

read_html(signed.in.post$url) %>% html_node("form")

My goal is to access my account and browse the website, but I don't know how to go through the redirecting page from R.


updating the previous response by IvanP with the up-to-date httr function names

library(rvest)

signin.session <- session(signin)
signin.form <- html_form(signin.session)[[1]]
filled.signin <- html_form_set(signin.form, 
                   `user[email]` = user.email, 
                   `user[password]` = user.password)

signed.in <- session_submit(signin.session, filled.signin)
redirect.form <- html_form_set(signed.in)[[1]]
redirected <- session_submit(signed.in, redirect.form)