Invalid_client: Unknown client in Expo Native Client Login

I am trying to setup authentication in expo react native app. I have followed the steps provided for expo, when trying to login, it always displays an error saying:

invalid_request: Unknown clinet: and I make sure the client id is correct, not sure what’s wrong.

“error”: {
“message”: “Unknown client: 4hVW6MbIWSUwj6uM48698HQtnx7wfhwTd”,
“oauthError”: “invalid_request”,
“type”: “request-error”
}

trying to authorize with below code

const onLogin = async () => {
    try {
      await authorize({scope: 'openid profile email'});
    } catch (e) {
      console.log(e);
    }
  };