alrhalford
alrhalford
I'm getting this traceback from django: https://paste.ubuntu.com/p/jxP24njhxd/ The cliend_id and client_secret are definitely correct. I'm using authorized-code grant type, is this a problem with the redirect uri? I've set ```...
I have used django knox a few times in the past. This time, I need each token to have a human readable 'name'. I thought that the easiest way might...
I have been using (Homebrew) pyenv and pyenv-virtualenv for a long time, and my usual procedure for creating a virtual environment (with 3.7.4, for example) is: ``` pyenv install 3.7.4...
I'm trying to create a button component like so: ``` export class CancelButton extends React.Component { render() { const baseStyle = { borderRadius: 30, borderWidth: StyleSheet.hairlineWidth, width: 60, height: 60,...
I'm trying to use djoser with token authentication, but using django-rest-knox tokens. I have set the `TOKEN_MODEL` to `knox.models.AuthToken`, and the rest framework's `DEFAULT_AUTHENTICATION_CLASSES` to `knox.auth.TokenAuthentication`. I naïvely thought that...