mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
- Added mongodb database - Removed dumps - Added jwt google auth decode plugin - Added long decode plugin - Updated protos to latest commit - Updated readme - Added avatar saving - Fixed bug, where username, level and exp didnt got displayed - Default username is "undefined" - Clear console stdin - Save players into db stdin - Seperated login/register phase - Added decode long util method
18 lines
474 B
Protocol Buffer
Vendored
18 lines
474 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Envelopes;
|
|
|
|
import "POGOProtos/Networking/Envelopes/AuthTicket.proto";
|
|
import "POGOProtos/Networking/Envelopes/Unknown6Response.proto";
|
|
|
|
message ResponseEnvelope {
|
|
int32 status_code = 1;
|
|
uint64 request_id = 2;
|
|
string api_url = 3;
|
|
|
|
repeated .POGOProtos.Networking.Envelopes.Unknown6Response unknown6 = 6;
|
|
.POGOProtos.Networking.Envelopes.AuthTicket auth_ticket = 7;
|
|
|
|
repeated bytes returns = 100;
|
|
string error = 101;
|
|
}
|