-
Notifications
You must be signed in to change notification settings - Fork 545
New issue
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
Add Bilibili provider #1044
base: dev
Are you sure you want to change the base?
Add Bilibili provider #1044
Conversation
src/AspNet.Security.OAuth.Bilibili/AspNet.Security.OAuth.Bilibili.csproj
Show resolved
Hide resolved
test/AspNet.Security.OAuth.Providers.Tests/Bilibili/BilibiliTests.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/AspNet.Security.OAuth.Bilibili.csproj
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but pinging @kevinchalet for a review after the conversation in the other PR recently.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your PR! ❤️
{ | ||
var parameters = new Dictionary<string, string?> | ||
{ | ||
["client_id"] = Options.ClientId, // Used instead of "client_id" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm confused, isn't the parameter named client_id
here too? 😃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After removing the ["client_id"] = Options.ClientId
, the API returned Key: 'AccessTokenReq.ClientId' Error:Field validation for 'ClientId' failed on the 'required' tag
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't suggest not sending the client_id
parameter (which is standard and mandatory), it's just that the comment is wrong since the standard client_id
(and not something else) is used here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has enabled me to learn about the standardization of code comments. Thank you. ❤️
I have commit.
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
src/AspNet.Security.OAuth.Bilibili/BilibiliAuthenticationHandler.cs
Outdated
Show resolved
Hide resolved
request.Headers.Add("x-bili-accesskeyid", Options.ClientId); | ||
request.Headers.Add("x-bili-content-md5", "d41d8cd98f00b204e9800998ecf8427e"); | ||
request.Headers.Add("x-bili-signature-method", "HMAC-SHA256"); | ||
request.Headers.Add("x-bili-signature-nonce", utcNow.ToUnixTimeMilliseconds().ToString(CultureInfo.InvariantCulture)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's generate a real/random 256-bit nonce
here using Base64Url.EncodeToString(RandomNumberGenerator.GetBytes(256 / 8))
instead of using the current date (which may not be unique if multiple authentication demands are processed in parallel).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have commit.
Add Bilibili provider

Screenshots translated by Microsoft

https://openhome.bilibili.com/doc/4/aac73b2e-4ff2-b75c-4c96-35ced865797b#h2-u63A5u5165u6D41u7A0Bu8BE6u7EC6u4ECBu7ECD