Uploaded image for project: 'Help-Desk'
  1. Help-Desk
  2. HELP-4563

FIWARE.Request.Tech.Security.IDM-KeyRock.IDM issue

    Details

    • Type: extRequest
    • Status: Closed
    • Priority: Major
    • Resolution: Done
    • Fix Version/s: 2021
    • Component/s: FIWARE-TECH-HELP
    • Labels:
      None

      Description

      Dear FIWARE coach,
      we forward you a support request received from a CreatiFI applicant we are
      not able to solve.
      Please let us know if you need direct contact with the submitter.
      Thanks.

      *************************************

      Hi,

      I am trying to get an access token using FIWARE Lab IDM.
      I have accounts created and the application is defined.
      Everything works fine for authorization code grant.
      But when I want to get an access token only using client_id and
      client_secret (client credentials grant) I get an internal server error.
      See my code below (which I got from the educational videos), I have omitted
      my client_id and client_secret of course:

      var basic = new Buffer(client_id + ':' + client_secret).toString('base64');
      var body = 'grant_type=client_credentials';

      var options = {
      hostname: 'account.lab.fiware.org',
      port: 443,
      path: '/oauth2/token',
      method: 'POST',
      headers:

      { 'Authorization': 'Basic ' + basic, 'Content-Type': 'application/x-www-form-urlencoded', 'Content-Length': body.length }

      };

      var req = https.request(options, function(res) {
      res.setEncoding('utf8');
      res.on('data', function(data) {
      if(res.statusCode === 200)

      { var resp = JSON.parse(data); var token = resp['access_token']; console.log('Token: ' + token); }

      else

      { console.log(data); }

      });
      });

      req.write(body);
      req.end();

      And this is the JSON response I get back: {"error": {"message": "An
      unexpected error prevented the server from fulfilling your request.",
      "code": 500, "title": "Internal Server Error"}}

      thxs

      *************************************

      _______________________________________________
      Fiware-creatifi-coaching mailing list
      Fiware-creatifi-coaching@lists.fi-ware.org
      https://lists.fi-ware.org/listinfo/fiware-creatifi-coaching

      [Created via e-mail received from: Andrea Maestrini <amaestrini@create-net.org>]

        Issue Links

          Activity

          Hide
          backlogmanager Backlog Manager added a comment -

          Assignee before migration = Alvaro Alonso

          Show
          backlogmanager Backlog Manager added a comment - Assignee before migration = Alvaro Alonso
          Hide
          backlogmanager Backlog Manager added a comment -

          Original time span = 10 days, 7:50:31

          Show
          backlogmanager Backlog Manager added a comment - Original time span = 10 days, 7:50:31

            People

            • Assignee:
              aalonsog Alvaro Alonso
              Reporter:
              fw.ext.user FW External User
            • Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: