Support » Plugin: Redirection » REST API Woes

  • Resolved Vovi

    (@rossdav)


    I have created a user role called win_admin that is an amalgamation of several other roles including editor and shop manager.

    Thee were unable to see the Redirection option in their Tools menu so added the following which has made it appear:

    add_filter( 'redirection_role', function( $role ) {
      return 'win_admin';  
    } );

    Unfortunately they see errors on the option page:

    Something went wrong 🙁
    Sorry, you are not allowed to do that. (rest_forbidden)

    REST API:
    Unavailable

    I have disabled security plugins in case they are blocking API calls but that hasn’t helped.

    Is there something else I need to do to give them access to the plugin?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author John Godley

    (@johnny5)

    I couldn’t say if you need to do anything else. The capability check is a standard capability check. Is it possible that your code is running too late, and the check happens before?

    Thread Starter Vovi

    (@rossdav)

    Hi John,

    So you are saying it *should* work?

    Have you ever tested giving access to another role and got it working?

    Plugin Author John Godley

    (@johnny5)

    Yes, of course it has been tested. I know other users are running custom role setups.

    Thread Starter Vovi

    (@rossdav)

    ok, thanks. Another wasted morning then.

    What a pain.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘REST API Woes’ is closed to new replies.