Ошибка аутентификации API WSO2 API Manager для нескольких областей - PullRequest
0 голосов
/ 21 июня 2019

Я пытаюсь аутентифицировать свое внешнее приложение с помощью WSO2 API Manager.Я добавил некоторые области для одной конечной точки, а также назначил роль пользователя, и когда я пытаюсь получить доступ к этой конечной точке с помощью этого пользователя, я не могу получить к ней доступ.

в моем приложении для аутентификации я также добавил эту область действия

вот код для приложения аутентификации

var express = require('express');
var router = express.Router();

// Set the configuration settings
const credentials = {
  client: {
    id: 'Bc9am2voec_NAvfJA8KmpiZ0qAca',
    secret: 'hD3_9rDl6Khkb6uYd7vKmnc9ThYa'
  },
  auth: {
    tokenHost: 'https://localhost:8243/',
    tokenPath: 'token',
    authorizeHost: 'https://localhost:8243/',
    authorizePath: 'authorize'
  }
};

// Initialize the OAuth2 Library
const oauth2 = require('simple-oauth2').create(credentials);

/* GET users listing. */
router.get('/signin', function (req, res, next) {
  console.log("Signin")
  // Authorization oauth2 URI
  const authorizationUri = oauth2.authorizationCode.authorizeURL({
    redirect_uri: 'http://localhost:3000/auth/callback',
    scope: ['openid','tpl_edit','OFC-CreateN'], // also can be an array of multiple scopes, ex. ['<scope1>, '<scope2>', '...']
    state: ''
  });

  // Redirect example using Express (see http://expressjs.com/api.html#res.redirect)
  console.log(authorizationUri);
  res.redirect(authorizationUri);
});

router.get('/auth/callback', function (req, res, next) {
  console.log(req.query);
  // Get the access token object (the authorization code is given from the previous step).
  const tokenConfig = {
    code: req.query.code,
    redirect_uri: 'http://localhost:3000/auth/callback',
    scope: 'openid tpl_edit OFC-CreateN', // also can be an array of multiple scopes, ex. ['<scope1>, '<scope2>', '...']
  };
  // THIS HAS TO BE REMOVED IN PRODUCTION
  process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
  // Save the access token
  try {
    oauth2.authorizationCode.getToken(tokenConfig).then(function(result){

      const accessToken = oauth2.accessToken.create(result);
      console.log(accessToken);

      console.log(`
      ##############################################################
      ${JSON.stringify(accessToken, null,  2)}
      ##############################################################
      `)


      res.cookie('somekey',accessToken['token']['access_token'], { maxAge: 900000, httpOnly: false });
      res.redirect("http://localhost:3000/ele/admin/");
    }).catch(function(error){
      console.log(error);
      res.send();
    });
  } catch (error) {
    console.log('Access Token Error', error.message);
    res.send();
  }
});

module.exports = router;

, а вот журнал менеджера API


[2019-06-21 12:10:41,663]  INFO - LogMediator STATUS = Executing default 'fault' sequence, ERROR_CODE = 404, ERROR_MESSAGE = No matching resource found for given API Request
[2019-06-21 12:10:41,670]  WARN - APIKeyValidationServiceImpl Invalid session id for thrift authenticator.
[2019-06-21 12:10:41,670] ERROR - APIKeyValidationServiceImpl Error in invoking validate key via thrift..
[2019-06-21 12:10:41,670]  WARN - ThriftKeyValidatorClient Login failed.. Authenticating again..
[2019-06-21 12:10:41,724]  INFO - CarbonAuthenticationUtil 'admin@carbon.super [-1234]' logged in at [2019-06-21 12:10:41,724+0530] from IP address 
[2019-06-21 12:10:41,868]  INFO - DataBridge user admin connected
[2019-06-21 12:10:45,645]  WARN - APIAuthenticationHandler API authentication failure due to The access token does not allow you to access the requested resource
[2019-06-21 12:16:55,401]  INFO - InboundDBSyncRequestEvent Running DB sync task.
[2019-06-21 12:31:55,401]  INFO - InboundDBSyncRequestEvent Running DB sync task.


вот информация о токене


Signin
https://localhost:8243/authorize?response_type=code&client_id=Bc9am2voec_NAvfJA8KmpiZ0qAca&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fauth%2Fcallback&scope=openid%2Ctpl_edit%2COFC-CreateNomination&state=
{ code: 'cb28cb01-259b-3938-b980-4bfcacaf2056' }
AccessToken {
  token:
   { access_token: '1898f35f-d9a3-3f18-868b-474384f7517e',
     refresh_token: 'f1dbecb8-a68a-3b53-98e0-157a4d7171ce',
     scope: 'default',
     token_type: 'Bearer',
     expires_in: 3600,
     expires_at: 2019-06-21T07:40:41.477Z } }

      ##############################################################
      {
  "token": {
    "access_token": "1898f35f-d9a3-3f18-868b-474384f7517e",
    "refresh_token": "f1dbecb8-a68a-3b53-98e0-157a4d7171ce",
    "scope": "default",
    "token_type": "Bearer",
    "expires_in": 3600,
    "expires_at": "2019-06-21T07:40:41.477Z"
  }
}
      #################

похоже, информация о области действия не сработала, потому что токен доступа все еще имеет default.can любой может помочь мне решить эту проблему .. спасибо

...