我想通过 vk.com 使用 python-social-auth 进行授权,并在重定向 uri 时出错

I want to authorize through vk.com with using python-social-auth and get error with redirect uri

错误

{
    "error":"invalid_request",
    "error_description":"redirect_uri is incorrect, check application redirect uri in the settings page"
}

settings.py

AUTHENTICATION_BACKENDS = (
    'social.backends.vk.VKOAuth2',
    'django.contrib.auth.backends.ModelBackend',
)
SOCIAL_AUTH_VK_OAUTH2_KEY = '****'
SOCIAL_AUTH_VK_OAUTH2_SECRET = '*****'

在 vk.com http://127.0.0.1:8000/complete/vk-oauth2 作为重定向 URI

我看到网络请求,里面有参数 redirect_uri:

http://localhost:8000/complete/vk-oauth2/.

我将其粘贴到 vk.com 上的重定向 uri 中。授权成功结束。 要查看请求,请按 f12 并转到选项卡网络(在 Firefox 中)。

"social_auth" 通过 Django 构建完整的 URL,它查看 X_FORWARDED_FOR header。如果你已经在本地安装了Nginx,config near 将帮助你:

server {
    client_max_body_size 20M;
    listen 80;
    server_name example.loc;

    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}