• Resolved chetan0412

    (@chetan0412)


    Unable to login on website. getting below error in debug.

    {
    “error”: “unsupported_grant_type”,
    “error_description”: “Invalid grant_type: ”
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ramona

    (@nextend_ramona)

    Hi @chetan0412

    If you’re looking at the Debug Information from the Debug menu:

    View post on imgur.com


    then that page is only for checking whether your site can communicate with the provider’s. So the only thing that matters is the success or failure message:

    View post on imgur.com


    If the connection is successful, you should ignore everything else you on this page.

    What’s the exact login problem you have? Do you get any kind of error message when you attempt the login?

    The most common error is the “User registration is currently not allowed” message. It happens because Nextend Social Login inherits the WordPress – Membership settings ( WordPress admin menu side bar > Settings > General > Membership – Anyone can register ) This means if you have that setting disabled, the registration won’t be enabled with Nextend Social Login either.

    If you only want to enable the registration with Nextend Social Login, regardless of your WordPress settings, then you should navigate to:
    Nextend Social Login > Global Settings > General tab > Membership
    and change it to “Enabled”:
    https://nextendweb.com/nextend-social-login-docs/global-settings/

    But if you see any other error when you try to log in, please copy it or send me a screenshot where I can see it.

    Thread Starter chetan0412

    (@chetan0412)

    Hello,

    my problem has been resolved, let me explain the issue.

    actually i have added below snip to block manual registration on website.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{THE_REQUEST} ^.*(wp-login.php\?action=register).* [NC]
    RewriteRule ^(.*)$ – [F,L]
    </IfModule>

    and mystically enabled Terms and conditions from Privacy tab. due to that my login page was infinitely taking time to complete registration.

    not disabled policy page and working fine.

    • This reply was modified 3 years, 6 months ago by chetan0412.
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘unsupported_grant_type’ is closed to new replies.