-
Notifications
You must be signed in to change notification settings - Fork 649
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 new APIs and fix some issues related to login_api #2617
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
login_api::get_config
API and fix some issues related to login_api
This was
linked to
issues
Jul 30, 2022
Closed
Closed
Kudos, SonarCloud Quality Gate passed! |
This was referenced Jul 31, 2022
Closed
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR for #626, #2614, #1689.
login_api::get_available_api_sets
API, which returns a list of API sets that the user has access to. For How to know available API in the connected node? #1689. E.G.login_api::get_info
API, which returns a string defined by the node operator via a newapi-node-info
node startup option. For Server Info API #626. E.G.login_api::get_config
API, which returns the configured application options, including API limits and etc. It requires the user to be logged in and have access to at least one API set other thanlogin_api
. For Server Info API #626. E.G.login_api::logout
API, which always returnsfalse
. E.G.login_api::login
API to accept an empty argument list, in this case it returns the API set ID allocated to thelogin
API set, which is always1
. This is needed to support named API call in thelogin
API set itself.login_api::login
API explicitly is not always required by clients.database
API set, the API set ID0
will be allocated to adummy
API set. If the authentication succeeds,0
will be allocated to thedatabase
API set, and thelogin_api::database
API will always return0
, even after logged out and re-logged in.0
).