Cells-client Oauth config fails

I’m running the latest version (2.1.6) of cells server behind an Nginx reverse proxy
I’m trying to get the cells-client to connect to my cells instance.
I’m following the more up-to-date method
cec oauth
put in my server url
cells-client as the App ID
the secret from my pydio.json file
Then, I can’t launch a browser
so it gives me the link to copy and paste
This part fails


and it gives me this
2020-09-24T14:38:16.834+1000 INFO pydio.grpc.tasks Run Job internal-prune-jobs on timer event Iso8601Schedule:“R/2012-06-04T19:25:16.828696-07:03/PT10M”
ERRO[12651] An error occurred description=“The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed” error=invalid_request hint=“The “redirect_uri” parameter does not match any of the OAuth 2.0 Client’s pre-registered redirect urls.”

Hi,

Try to add https://domain/oauth2/oob to the list of callback urls of cells-client

It’s got that in there already
{
“client_id”: “cells-client”,
“client_name”: “Cells Client CLI Tool”,
“grant_types”: [
“authorization_code”,
“refresh_token”
],
“redirect_uris”: [
http://localhost:3000/servers/callback”,
https://things.you.cant.see/oauth2/oob
],
“response_types”: [
“code”,
“token”,
“id_token”
],
“scope”: “openid email profile pydio offline”
},

ahh,
Please try to restart cells

This topic was automatically closed after 30 days. New replies are no longer allowed.