mirror of
https://codeberg.org/steam-vent/proto-csgo.git
synced 2026-06-04 02:24:07 +02:00
initial import from steam-vent repo
This commit is contained in:
commit
b4633fa310
90 changed files with 247724 additions and 0 deletions
18
protos/steammessages_oauth.steamworkssdk.proto
Normal file
18
protos/steammessages_oauth.steamworkssdk.proto
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import "steammessages_unified_base.steamworkssdk.proto";
|
||||
|
||||
message COAuthToken_ImplicitGrantNoPrompt_Request {
|
||||
optional string clientid = 1 [(description) = "Client ID for which to count the number of issued tokens"];
|
||||
}
|
||||
|
||||
message COAuthToken_ImplicitGrantNoPrompt_Response {
|
||||
optional string access_token = 1 [(description) = "OAuth Token, granted on success"];
|
||||
optional string redirect_uri = 2 [(description) = "Redirection URI provided during client registration."];
|
||||
}
|
||||
|
||||
service OAuthToken {
|
||||
option (service_description) = "Service containing methods to manage OAuth tokens";
|
||||
|
||||
rpc ImplicitGrantNoPrompt (.COAuthToken_ImplicitGrantNoPrompt_Request) returns (.COAuthToken_ImplicitGrantNoPrompt_Response) {
|
||||
option (method_description) = "Grants an implicit OAuth token (grant type 'token') for the specified client ID on behalf of a user without prompting";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue