Antonio R. A. Brasil

Results 10 comments of Antonio R. A. Brasil

Hi @Haarolean , can you assign it to me?

I can take this one. What about this solution? specifying "api-prod" as arg. ``` cd kafka-ui-api ./mvnw compile -Papi-prod ``` Actually the ` ./mvnw compile -Pprod` doesn't compile the "kafka-ui-contract"...

This is an API. That's mean you can use it to develop your own bot.

I tested yesterday in central park and many forts appeared. But today when I tried to bot again, just 21 mapcells without forts has been returned.

No, you arent. I have the same issue. It's strange.

I think you are right. When I try at the first time to retrieve the map I receive just 21 cells. I put a Task.Delay(15000) and after a while the...

``` // first we need to get all map objects var map = player.Map.GetMapObjects(); // after, let get ALL pokestops in map var pokestops = map.MapCells.SelectMany(x => x.Fort).Where(i.Type == FortType.Checkpoint...

You can handle the failures. Here is a example code: ``` internal class APIFailure : IApiFailureStrategy { public async Task HandleApiFailure(RequestEnvelope request, ResponseEnvelope response) { await Task.Delay(500); return ApiOperation.Retry; }...