JodelRaccoons / jodel_api

Unoffical Python Interface to the Jodel API
https://github.com/nborrmann/jodel_api
MIT License
18 stars 7 forks source link

Update hmac to version 7.35 #23

Closed springjools closed 2 years ago

springjools commented 2 years ago

Use a new hmac-key and update version to 7.35. Use ios instead of android as client type.

springjools commented 2 years ago

There is one glitch: if you request yout user config twice: you are blocked

This works: python/python3 import jodel_api lat, lng, city = 48.18417750813963, 11.528821049810162, "Munich" j = jodel_api.JodelAccount(lat=lat, lng=lng, city=city)

This is the glitch: j.get_user_config()[1].get('user_blocked') False j.get_user_config()[1].get('user_blocked') True