Devid
Devid
What concern me is that since APIs are different they accept different parameter format. Looking into Firebase docs seems that [API v1](https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send#request-body ) has a different param signature from [legacy](https://firebase.google.com/docs/cloud-messaging/http-server-ref#downstream-http-messages-json)...
> Where you able to solve this?? ATM I do not have time to work on a PR about this issue. Since Google is still maintaining legacy API (to keep...
This could be accomplished by using official [`firebase-admin`](https://pypi.org/project/firebase-admin/) or by using the [example code](https://github.com/firebase/quickstart-python/blob/master/messaging/messaging.py) provided by firebase guide.
This is a [stacking-context](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context) issue due to the fact that by default tooltip/popover uses `` as containing element. https://github.com/reactstrap/reactstrap/blob/551d9eec46420a8965c8f42249b93aaaa9aab579/src/PopperContent.js#L47 The problem should be "fixable" by giving the correct container node...
> That doesn't work, unfortunately. Tried container='div' with UncontrolledToolTip, but it still has the same issue. That selector maybe is not enough specific. Let me explain: when providing a _string_...
This issue is still present, even if in v8.8.1 a "safe-render" was added the problem is `findDOMElements`: https://github.com/reactstrap/reactstrap/blob/551d9eec46420a8965c8f42249b93aaaa9aab579/src/utils.js#L297-L301 This issue is caused when tooltip and target are created togheter, thus...
@st4lk are you going to provide any update to this project?
There is also an import from phonedevice plugin in `views.core`: https://github.com/jazzband/django-two-factor-auth/blob/22aaab5c702d44d26ee8bf83c0190aca997e0331/two_factor/views/core.py#L38 Which breaks when importing anything from `views` package if `phonenumbers` is not installed: ``` File ".virtualenvs/lib/python3.9/site-packages/two_factor/views/__init__.py", line 1, in...
> Sure, probably ` get_available_phone_methods` should be moved (back?) in `two_factor.utils`? Since that method does not rely on other code in the phonenumber plugin it could work. But IMO it...
If I will work on this I would like to do a quite heavy rework to have a real plugin-based app, where every OTP method is not mandatory (while currently...