Alan Jereb

Results 8 comments of Alan Jereb

I can confirm. I have the same issue with Passport-twitter ------------------- **Edit** For anyone facing the same issue, I have solved it by attaching request params to the request's session....

This is the correct API URL: ``` https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?convert=EUR&limit=400&CMC_PRO_API_KEY=XXXXXXXXXXXXXXXXXXXXX ``` Just substitute `XXXXXXXXXXXXXXXXXXXXX` with your API key and in file `main.js` substitute line 8 URL with the above.

Thank you for your prompt reply. Is there a method on the API we can call to check if the current location is inside of a polygon geofence? I see...

> Are you using polygon geofences? Yes, we have the requirement for the use of polygon geofences. ``` Geofence fallbackGeofence = bg.Geofence( identifier: "BS - Solkan", vertices: [ [45.96834346690925, 13.639118639857761],...

I am. The time-management app provides user with set of events (buttons) based on his location. For example: - If a user is on the company's premises, he gets the...

What happens if the device is opened and used only inside the geofence and the user never exits it to trigger the `onGeofence` event? I have nothing to log locally...

Looking through the debug logs, not always is the `ENTER` event triggered on start (I'm always adding the same polygons for testing, old copies are removed and new ones added...

For anyone having the same issue, in the end, I've implemented a custom `isCurrentLocationInGeofence`. I run it on initialization, but you can run it whenever needed. I've implemented it for...