We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cookie
/vcs.v1.VCSService/GithubLogin
/vcs.v1.VCSService/GithubRefresh
Refactor cookie manager and VCS client to use new version of the API:
/vcs.v1.VCSService/GithubLogin and /vcs.v1.VCSService/GithubRefresh now include 3 new fields. Resulting in:
token
token_expires_at
refresh_token_expires_at
Current cookie format is also deprecated. Backend accepts both the old and the new formats.
Backend expects frontend to append a cookie with the name pyroscope_git_session and the following base64 encoded json body:
pyroscope_git_session
The text was updated successfully, but these errors were encountered:
ifrost
No branches or pull requests
Refactor cookie manager and VCS client to use new version of the API:
cookie
and start sending token and expirations pyroscope#3573Changes in VCS client
/vcs.v1.VCSService/GithubLogin
and/vcs.v1.VCSService/GithubRefresh
now include 3 new fields. Resulting in:cookie
field becomes deprecated.token
,token_expires_at
andrefresh_token_expires_at
for creating the cookie.Current cookie format is also deprecated. Backend accepts both the old and the new formats.
New cookie format
Backend expects frontend to append a cookie with the name
pyroscope_git_session
and the following base64 encoded json body:token
: the same that came in the backend response (required).token_expires_at
: optionalrefresh_token_expires_at
: optionalThe text was updated successfully, but these errors were encountered: