Ian R-P
Ian R-P
It will depend on the provider and the configuration of the provider within django-allauth, for example [Facebook](https://django-allauth.readthedocs.io/en/latest/providers.html#facebook) has a FIELDS setting within facebooks SOCIALACCOUNT_PROVIDERS configuration. From there you can use...
You will see it working when you connect a social account to an already existing account.
What about setting `supports_state=False` and then in your providers complete_login, add to the `request.session['socialaccount_state'] = ({}, False)`. It pops the tuple off [here](https://github.com/pennersr/django-allauth/blob/master/allauth/socialaccount/models.py#L320) and then state (the empty dict) gets...
In your AccountAdapter ([example here](https://django-allauth.readthedocs.io/en/latest/advanced.html?highlight=DefaultAccountAdapter#custom-redirects)) you can override [post_login](https://github.com/pennersr/django-allauth/blob/master/allauth/account/adapter.py#L415) and check that `signup==True` as well as checking that signal_kwargs is a dict that contains a key named sociallogin. If both...
Are you sure you restarted the instance? What other settings do you have set currently?
Decided to just change https://github.com/nicfit/eyeD3/blob/master/eyed3/id3/tag.py#L558 to the following and it works fine. ``` self._setDate(b"TDAT", date) ```
My original limiting factor was another library not supporting 64-bit, but I just checked and they now support 64-bit. At this point it's just a matter of having 58 projects...
@pirate @dugite-code Hi, any chance of this PR being merged soon? Or where are things left? It would be quite nice to get it through.
What about adding a server config option that adds the `RemoteUserBackend` to `AUTHENTICATION_BACKENDS` and adding a note to the config page with something along the lines of "If you enable...
Looking at the webhooks.py I saw the `class ChargeWebhook` has a `def process_webhook` method. I copied that method into the `class ChargeDisputeCreatedWebhook` and changed from "id" to "charge" and everything...