Search in sources :

Example 1 with GetAssetDigestMessage

use of POGOProtos.Networking.Requests.Messages.GetAssetDigestMessageOuterClass.GetAssetDigestMessage in project PokeGOAPI-Java by Grover-c13.

the class PokemonGo method getAssetDigest.

/**
 * Second requests block. Public since it could be re-fired at any time
 *
 * @throws RequestFailedException if an exception occurred while sending requests
 */
public void getAssetDigest() throws RequestFailedException {
    GetAssetDigestMessage message = CommonRequests.getGetAssetDigestMessageRequest(this);
    ServerRequest request = new ServerRequest(RequestType.GET_ASSET_DIGEST, message);
    requestHandler.sendServerRequests(request, true);
}
Also used : GetAssetDigestMessage(POGOProtos.Networking.Requests.Messages.GetAssetDigestMessageOuterClass.GetAssetDigestMessage) ServerRequest(com.pokegoapi.main.ServerRequest)

Aggregations

GetAssetDigestMessage (POGOProtos.Networking.Requests.Messages.GetAssetDigestMessageOuterClass.GetAssetDigestMessage)1 ServerRequest (com.pokegoapi.main.ServerRequest)1