mirror of
https://github.com/librespot-org/librespot.git
synced 2025-03-09 00:17:28 +00:00
53 lines
1 KiB
Protocol Buffer
53 lines
1 KiB
Protocol Buffer
// Extracted from: Spotify 1.1.33.569 (Windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.login5.v3.credentials;
|
|
|
|
option objc_class_prefix = "SPTLogin5";
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "com.spotify.login5.v3.credentials.proto";
|
|
|
|
message StoredCredential {
|
|
string username = 1;
|
|
bytes data = 2;
|
|
}
|
|
|
|
message Password {
|
|
string id = 1;
|
|
string password = 2;
|
|
bytes padding = 3;
|
|
}
|
|
|
|
message FacebookAccessToken {
|
|
string fb_uid = 1;
|
|
string access_token = 2;
|
|
}
|
|
|
|
message OneTimeToken {
|
|
string token = 1;
|
|
}
|
|
|
|
message ParentChildCredential {
|
|
string child_id = 1;
|
|
StoredCredential parent_stored_credential = 2;
|
|
}
|
|
|
|
message AppleSignInCredential {
|
|
string auth_code = 1;
|
|
string redirect_uri = 2;
|
|
string bundle_id = 3;
|
|
}
|
|
|
|
message SamsungSignInCredential {
|
|
string auth_code = 1;
|
|
string redirect_uri = 2;
|
|
string id_token = 3;
|
|
string token_endpoint_url = 4;
|
|
}
|
|
|
|
message GoogleSignInCredential {
|
|
string auth_code = 1;
|
|
string redirect_uri = 2;
|
|
}
|