Unable to access rest api : http://localhost/magento2/index.php/rest/V1/products The Next CEO of Stack OverflowMagento 2 API not authenticatingUnable to extend Orders Rest Api of MagentoAuthorization failed during category creation using REST APISorting issue while getting product from category ID using REST ApiDoubts regarding creating Magento Mobile AppMagento REST API - Unable to Login using buyer username and passwordLinnworks and Consumer is not authorizedUnable to get salesorders and Customers From Magento 2.2 using REST APImagento 2 Rest APi How to use default methodsError Consumer is not authorized to access %resources

Is it correct to say moon starry nights?

Compensation for working overtime on Saturdays

Does the Idaho Potato Commission associate potato skins with healthy eating?

Is a distribution that is normal, but highly skewed, considered Gaussian?

Calculating discount not working

What are the unusually-enlarged wing sections on this P-38 Lightning?

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

pgfplots: How to draw a tangent graph below two others?

"Eavesdropping" vs "Listen in on"

How to show a landlord what we have in savings?

Cannot restore registry to default in Windows 10?

Prodigo = pro + ago?

Creating a script with console commands

Direct Implications Between USA and UK in Event of No-Deal Brexit

What does this strange code stamp on my passport mean?

An elegant way to define a sequence

Ising model simulation

What day is it again?

What is the difference between 'contrib' and 'non-free' packages repositories?

How can the PCs determine if an item is a phylactery?

It it possible to avoid kiwi.com's automatic online check-in and instead do it manually by yourself?

Fastest algorithm to decide whether a (always halting) TM accepts a general string

Does int main() need a declaration on C++?

Why did Batya get tzaraat?



Unable to access rest api : http://localhost/magento2/index.php/rest/V1/products



The Next CEO of Stack OverflowMagento 2 API not authenticatingUnable to extend Orders Rest Api of MagentoAuthorization failed during category creation using REST APISorting issue while getting product from category ID using REST ApiDoubts regarding creating Magento Mobile AppMagento REST API - Unable to Login using buyer username and passwordLinnworks and Consumer is not authorizedUnable to get salesorders and Customers From Magento 2.2 using REST APImagento 2 Rest APi How to use default methodsError Consumer is not authorized to access %resources










0















I am new to Magento. Please help me understand how to fetch the products.
I believe there are some changes to be made in .htaccess file present in the root folder for this url: http://localhost/magento2/index.php/rest/V1/products to return the values.



This the response that I am getting :

Consumer is not authorized to access %resources

Magento_Catalog::products

.
Can someone please help me here.










share|improve this question
















bumped to the homepage by Community 3 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.



















    0















    I am new to Magento. Please help me understand how to fetch the products.
    I believe there are some changes to be made in .htaccess file present in the root folder for this url: http://localhost/magento2/index.php/rest/V1/products to return the values.



    This the response that I am getting :

    Consumer is not authorized to access %resources

    Magento_Catalog::products

    .
    Can someone please help me here.










    share|improve this question
















    bumped to the homepage by Community 3 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.

















      0












      0








      0


      1






      I am new to Magento. Please help me understand how to fetch the products.
      I believe there are some changes to be made in .htaccess file present in the root folder for this url: http://localhost/magento2/index.php/rest/V1/products to return the values.



      This the response that I am getting :

      Consumer is not authorized to access %resources

      Magento_Catalog::products

      .
      Can someone please help me here.










      share|improve this question
















      I am new to Magento. Please help me understand how to fetch the products.
      I believe there are some changes to be made in .htaccess file present in the root folder for this url: http://localhost/magento2/index.php/rest/V1/products to return the values.



      This the response that I am getting :

      Consumer is not authorized to access %resources

      Magento_Catalog::products

      .
      Can someone please help me here.







      magento-2.1 rest






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 14 '17 at 13:16







      user55339

















      asked Jun 14 '17 at 12:58









      user55339user55339

      12




      12





      bumped to the homepage by Community 3 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 3 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















          2 Answers
          2






          active

          oldest

          votes


















          0














          You can not access the resources through browser url because of authentication.



          this is the example coding below.



          for username and password austhentication you need to create in admin side.



          <?php

          $userData = array("username" => "test", "password" => "mypassword");

          $ch = curl_init("http://magento.m2/index.php/rest/V1/integration/admin/token");

          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

          curl_setopt($ch, CUsRLOPT_POSTFIELDS, json_encode($userData));

          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Content-Lenght: " . strlen(json_encode($userData))));

          $token = curl_exec($ch);

          $ch = curl_init("http://magento.m2/index.php/rest/V1/products/1");

          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Authorization: Bearer " . json_decode($token)));

          $result = curl_exec($ch);

          var_dump($result);


          for more info please follow the below links



          http://inchoo.net/magento-2/magento-2-api/



          http://www.dckap.com/blog/magento-2-webapi/



          Magento 2 API not authenticating






          share|improve this answer
































            0














            It seems to be a problem with the User Role.



            To get started with the REST API in Magento 2 using token-based authentication, you will need to create a web service User Role and register that role to a new Magento 2 Admin User.



            1. Login to the Magento 2 Admin Panel.

            2. Go to System > User Roles and tap the Add New Role

            3. Enter the Role Name.

            4. In Your Password field, enter the current password of your Magento 2
              Admin.

            5. Now, on the left side, click Role Resources.

            6. In the Resource Access, select only those that are required for your
              web service. (in your case, products should be selected)

            7. Once done, hit the Save Role

            Now, create a new user for the newly created role through these steps:



            1. Go to System > All Users and hit the Add New User

            2. Enter the required information including User Name, First and Last
              Name, Email, Password, etc.

            3. Now, on the left side, click User Role and select the newly created
              Role.

            4. Once done, click the Save User

            Now, I will pass the newly created username and password with the API URL in the initial connection and receive the token. This token will be saved in a variable, which will be passed in the header for further calls.



            <?php

            //API URL for authentication
            $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

            //parameters passing with URL
            $data = array("username" => "apiaccess", "password" => "cloudways123");
            $data_string = json_encode($data);

            $ch = curl_init($apiURL);
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
            curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
            $token = curl_exec($ch);

            //decoding generated token and saving it in a variable
            $token= json_decode($token);

            ?>


            You can fetch almost everything using Magento 2 REST API. In this answer, I will be fetching All Modules, but you can check out the List of REST APIs for Magento Open Source and see what you needed.



            Now, I will pass the token (fetched earlier) in the header with the API URL to get all the modules installed on Magento 2 store.



            <?php

            //API URL for authentication
            $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

            //parameters passing with URL
            $data = array("username" => "apiaccess", "password" => "cloudways123");
            $data_string = json_encode($data);

            $ch = curl_init($apiURL);
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
            curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
            $token = curl_exec($ch);

            //decoding generated token and saving it in a variable
            $token= json_decode($token);

            //******************************************//

            //Using above token into header
            $headers = array("Authorization: Bearer ".$token);

            //API URL to get all Magento 2 modules
            $requestUrl='http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/modules';

            $ch = curl_init($requestUrl);
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            $result = curl_exec($ch);

            //decoding result
            $result= json_decode($result);

            //printing result
            print_r($result);

            ?>


            Once you execute the above code (with relevant information), run the file in the browser and you will see output similar to the following:



            enter image description here



            If you need further help, check this complete guide: https://www.cloudways.com/blog/magento-2-rest-api/






            share|improve this answer























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "479"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f179015%2funable-to-access-rest-api-http-localhost-magento2-index-php-rest-v1-products%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              You can not access the resources through browser url because of authentication.



              this is the example coding below.



              for username and password austhentication you need to create in admin side.



              <?php

              $userData = array("username" => "test", "password" => "mypassword");

              $ch = curl_init("http://magento.m2/index.php/rest/V1/integration/admin/token");

              curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

              curl_setopt($ch, CUsRLOPT_POSTFIELDS, json_encode($userData));

              curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

              curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Content-Lenght: " . strlen(json_encode($userData))));

              $token = curl_exec($ch);

              $ch = curl_init("http://magento.m2/index.php/rest/V1/products/1");

              curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

              curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

              curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Authorization: Bearer " . json_decode($token)));

              $result = curl_exec($ch);

              var_dump($result);


              for more info please follow the below links



              http://inchoo.net/magento-2/magento-2-api/



              http://www.dckap.com/blog/magento-2-webapi/



              Magento 2 API not authenticating






              share|improve this answer





























                0














                You can not access the resources through browser url because of authentication.



                this is the example coding below.



                for username and password austhentication you need to create in admin side.



                <?php

                $userData = array("username" => "test", "password" => "mypassword");

                $ch = curl_init("http://magento.m2/index.php/rest/V1/integration/admin/token");

                curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

                curl_setopt($ch, CUsRLOPT_POSTFIELDS, json_encode($userData));

                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Content-Lenght: " . strlen(json_encode($userData))));

                $token = curl_exec($ch);

                $ch = curl_init("http://magento.m2/index.php/rest/V1/products/1");

                curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Authorization: Bearer " . json_decode($token)));

                $result = curl_exec($ch);

                var_dump($result);


                for more info please follow the below links



                http://inchoo.net/magento-2/magento-2-api/



                http://www.dckap.com/blog/magento-2-webapi/



                Magento 2 API not authenticating






                share|improve this answer



























                  0












                  0








                  0







                  You can not access the resources through browser url because of authentication.



                  this is the example coding below.



                  for username and password austhentication you need to create in admin side.



                  <?php

                  $userData = array("username" => "test", "password" => "mypassword");

                  $ch = curl_init("http://magento.m2/index.php/rest/V1/integration/admin/token");

                  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

                  curl_setopt($ch, CUsRLOPT_POSTFIELDS, json_encode($userData));

                  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Content-Lenght: " . strlen(json_encode($userData))));

                  $token = curl_exec($ch);

                  $ch = curl_init("http://magento.m2/index.php/rest/V1/products/1");

                  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

                  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Authorization: Bearer " . json_decode($token)));

                  $result = curl_exec($ch);

                  var_dump($result);


                  for more info please follow the below links



                  http://inchoo.net/magento-2/magento-2-api/



                  http://www.dckap.com/blog/magento-2-webapi/



                  Magento 2 API not authenticating






                  share|improve this answer















                  You can not access the resources through browser url because of authentication.



                  this is the example coding below.



                  for username and password austhentication you need to create in admin side.



                  <?php

                  $userData = array("username" => "test", "password" => "mypassword");

                  $ch = curl_init("http://magento.m2/index.php/rest/V1/integration/admin/token");

                  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");

                  curl_setopt($ch, CUsRLOPT_POSTFIELDS, json_encode($userData));

                  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Content-Lenght: " . strlen(json_encode($userData))));

                  $token = curl_exec($ch);

                  $ch = curl_init("http://magento.m2/index.php/rest/V1/products/1");

                  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");

                  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

                  curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json", "Authorization: Bearer " . json_decode($token)));

                  $result = curl_exec($ch);

                  var_dump($result);


                  for more info please follow the below links



                  http://inchoo.net/magento-2/magento-2-api/



                  http://www.dckap.com/blog/magento-2-webapi/



                  Magento 2 API not authenticating







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jun 15 '17 at 13:27









                  Manthan Dave

                  7,96621539




                  7,96621539










                  answered Jun 14 '17 at 13:53









                  JjoJjo

                  840214




                  840214























                      0














                      It seems to be a problem with the User Role.



                      To get started with the REST API in Magento 2 using token-based authentication, you will need to create a web service User Role and register that role to a new Magento 2 Admin User.



                      1. Login to the Magento 2 Admin Panel.

                      2. Go to System > User Roles and tap the Add New Role

                      3. Enter the Role Name.

                      4. In Your Password field, enter the current password of your Magento 2
                        Admin.

                      5. Now, on the left side, click Role Resources.

                      6. In the Resource Access, select only those that are required for your
                        web service. (in your case, products should be selected)

                      7. Once done, hit the Save Role

                      Now, create a new user for the newly created role through these steps:



                      1. Go to System > All Users and hit the Add New User

                      2. Enter the required information including User Name, First and Last
                        Name, Email, Password, etc.

                      3. Now, on the left side, click User Role and select the newly created
                        Role.

                      4. Once done, click the Save User

                      Now, I will pass the newly created username and password with the API URL in the initial connection and receive the token. This token will be saved in a variable, which will be passed in the header for further calls.



                      <?php

                      //API URL for authentication
                      $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                      //parameters passing with URL
                      $data = array("username" => "apiaccess", "password" => "cloudways123");
                      $data_string = json_encode($data);

                      $ch = curl_init($apiURL);
                      curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                      curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                      curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                      $token = curl_exec($ch);

                      //decoding generated token and saving it in a variable
                      $token= json_decode($token);

                      ?>


                      You can fetch almost everything using Magento 2 REST API. In this answer, I will be fetching All Modules, but you can check out the List of REST APIs for Magento Open Source and see what you needed.



                      Now, I will pass the token (fetched earlier) in the header with the API URL to get all the modules installed on Magento 2 store.



                      <?php

                      //API URL for authentication
                      $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                      //parameters passing with URL
                      $data = array("username" => "apiaccess", "password" => "cloudways123");
                      $data_string = json_encode($data);

                      $ch = curl_init($apiURL);
                      curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                      curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                      curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                      $token = curl_exec($ch);

                      //decoding generated token and saving it in a variable
                      $token= json_decode($token);

                      //******************************************//

                      //Using above token into header
                      $headers = array("Authorization: Bearer ".$token);

                      //API URL to get all Magento 2 modules
                      $requestUrl='http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/modules';

                      $ch = curl_init($requestUrl);
                      curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
                      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                      $result = curl_exec($ch);

                      //decoding result
                      $result= json_decode($result);

                      //printing result
                      print_r($result);

                      ?>


                      Once you execute the above code (with relevant information), run the file in the browser and you will see output similar to the following:



                      enter image description here



                      If you need further help, check this complete guide: https://www.cloudways.com/blog/magento-2-rest-api/






                      share|improve this answer



























                        0














                        It seems to be a problem with the User Role.



                        To get started with the REST API in Magento 2 using token-based authentication, you will need to create a web service User Role and register that role to a new Magento 2 Admin User.



                        1. Login to the Magento 2 Admin Panel.

                        2. Go to System > User Roles and tap the Add New Role

                        3. Enter the Role Name.

                        4. In Your Password field, enter the current password of your Magento 2
                          Admin.

                        5. Now, on the left side, click Role Resources.

                        6. In the Resource Access, select only those that are required for your
                          web service. (in your case, products should be selected)

                        7. Once done, hit the Save Role

                        Now, create a new user for the newly created role through these steps:



                        1. Go to System > All Users and hit the Add New User

                        2. Enter the required information including User Name, First and Last
                          Name, Email, Password, etc.

                        3. Now, on the left side, click User Role and select the newly created
                          Role.

                        4. Once done, click the Save User

                        Now, I will pass the newly created username and password with the API URL in the initial connection and receive the token. This token will be saved in a variable, which will be passed in the header for further calls.



                        <?php

                        //API URL for authentication
                        $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                        //parameters passing with URL
                        $data = array("username" => "apiaccess", "password" => "cloudways123");
                        $data_string = json_encode($data);

                        $ch = curl_init($apiURL);
                        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                        curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                        $token = curl_exec($ch);

                        //decoding generated token and saving it in a variable
                        $token= json_decode($token);

                        ?>


                        You can fetch almost everything using Magento 2 REST API. In this answer, I will be fetching All Modules, but you can check out the List of REST APIs for Magento Open Source and see what you needed.



                        Now, I will pass the token (fetched earlier) in the header with the API URL to get all the modules installed on Magento 2 store.



                        <?php

                        //API URL for authentication
                        $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                        //parameters passing with URL
                        $data = array("username" => "apiaccess", "password" => "cloudways123");
                        $data_string = json_encode($data);

                        $ch = curl_init($apiURL);
                        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                        curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                        $token = curl_exec($ch);

                        //decoding generated token and saving it in a variable
                        $token= json_decode($token);

                        //******************************************//

                        //Using above token into header
                        $headers = array("Authorization: Bearer ".$token);

                        //API URL to get all Magento 2 modules
                        $requestUrl='http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/modules';

                        $ch = curl_init($requestUrl);
                        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
                        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                        $result = curl_exec($ch);

                        //decoding result
                        $result= json_decode($result);

                        //printing result
                        print_r($result);

                        ?>


                        Once you execute the above code (with relevant information), run the file in the browser and you will see output similar to the following:



                        enter image description here



                        If you need further help, check this complete guide: https://www.cloudways.com/blog/magento-2-rest-api/






                        share|improve this answer

























                          0












                          0








                          0







                          It seems to be a problem with the User Role.



                          To get started with the REST API in Magento 2 using token-based authentication, you will need to create a web service User Role and register that role to a new Magento 2 Admin User.



                          1. Login to the Magento 2 Admin Panel.

                          2. Go to System > User Roles and tap the Add New Role

                          3. Enter the Role Name.

                          4. In Your Password field, enter the current password of your Magento 2
                            Admin.

                          5. Now, on the left side, click Role Resources.

                          6. In the Resource Access, select only those that are required for your
                            web service. (in your case, products should be selected)

                          7. Once done, hit the Save Role

                          Now, create a new user for the newly created role through these steps:



                          1. Go to System > All Users and hit the Add New User

                          2. Enter the required information including User Name, First and Last
                            Name, Email, Password, etc.

                          3. Now, on the left side, click User Role and select the newly created
                            Role.

                          4. Once done, click the Save User

                          Now, I will pass the newly created username and password with the API URL in the initial connection and receive the token. This token will be saved in a variable, which will be passed in the header for further calls.



                          <?php

                          //API URL for authentication
                          $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                          //parameters passing with URL
                          $data = array("username" => "apiaccess", "password" => "cloudways123");
                          $data_string = json_encode($data);

                          $ch = curl_init($apiURL);
                          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                          curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                          $token = curl_exec($ch);

                          //decoding generated token and saving it in a variable
                          $token= json_decode($token);

                          ?>


                          You can fetch almost everything using Magento 2 REST API. In this answer, I will be fetching All Modules, but you can check out the List of REST APIs for Magento Open Source and see what you needed.



                          Now, I will pass the token (fetched earlier) in the header with the API URL to get all the modules installed on Magento 2 store.



                          <?php

                          //API URL for authentication
                          $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                          //parameters passing with URL
                          $data = array("username" => "apiaccess", "password" => "cloudways123");
                          $data_string = json_encode($data);

                          $ch = curl_init($apiURL);
                          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                          curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                          $token = curl_exec($ch);

                          //decoding generated token and saving it in a variable
                          $token= json_decode($token);

                          //******************************************//

                          //Using above token into header
                          $headers = array("Authorization: Bearer ".$token);

                          //API URL to get all Magento 2 modules
                          $requestUrl='http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/modules';

                          $ch = curl_init($requestUrl);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          $result = curl_exec($ch);

                          //decoding result
                          $result= json_decode($result);

                          //printing result
                          print_r($result);

                          ?>


                          Once you execute the above code (with relevant information), run the file in the browser and you will see output similar to the following:



                          enter image description here



                          If you need further help, check this complete guide: https://www.cloudways.com/blog/magento-2-rest-api/






                          share|improve this answer













                          It seems to be a problem with the User Role.



                          To get started with the REST API in Magento 2 using token-based authentication, you will need to create a web service User Role and register that role to a new Magento 2 Admin User.



                          1. Login to the Magento 2 Admin Panel.

                          2. Go to System > User Roles and tap the Add New Role

                          3. Enter the Role Name.

                          4. In Your Password field, enter the current password of your Magento 2
                            Admin.

                          5. Now, on the left side, click Role Resources.

                          6. In the Resource Access, select only those that are required for your
                            web service. (in your case, products should be selected)

                          7. Once done, hit the Save Role

                          Now, create a new user for the newly created role through these steps:



                          1. Go to System > All Users and hit the Add New User

                          2. Enter the required information including User Name, First and Last
                            Name, Email, Password, etc.

                          3. Now, on the left side, click User Role and select the newly created
                            Role.

                          4. Once done, click the Save User

                          Now, I will pass the newly created username and password with the API URL in the initial connection and receive the token. This token will be saved in a variable, which will be passed in the header for further calls.



                          <?php

                          //API URL for authentication
                          $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                          //parameters passing with URL
                          $data = array("username" => "apiaccess", "password" => "cloudways123");
                          $data_string = json_encode($data);

                          $ch = curl_init($apiURL);
                          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                          curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                          $token = curl_exec($ch);

                          //decoding generated token and saving it in a variable
                          $token= json_decode($token);

                          ?>


                          You can fetch almost everything using Magento 2 REST API. In this answer, I will be fetching All Modules, but you can check out the List of REST APIs for Magento Open Source and see what you needed.



                          Now, I will pass the token (fetched earlier) in the header with the API URL to get all the modules installed on Magento 2 store.



                          <?php

                          //API URL for authentication
                          $apiURL="http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/integration/admin/token";

                          //parameters passing with URL
                          $data = array("username" => "apiaccess", "password" => "cloudways123");
                          $data_string = json_encode($data);

                          $ch = curl_init($apiURL);
                          curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                          curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json","Content-Length: ".strlen($data_string)));
                          $token = curl_exec($ch);

                          //decoding generated token and saving it in a variable
                          $token= json_decode($token);

                          //******************************************//

                          //Using above token into header
                          $headers = array("Authorization: Bearer ".$token);

                          //API URL to get all Magento 2 modules
                          $requestUrl='http://magento-91647-257956.cloudwaysapps.com/index.php/rest/V1/modules';

                          $ch = curl_init($requestUrl);
                          curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
                          curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                          $result = curl_exec($ch);

                          //decoding result
                          $result= json_decode($result);

                          //printing result
                          print_r($result);

                          ?>


                          Once you execute the above code (with relevant information), run the file in the browser and you will see output similar to the following:



                          enter image description here



                          If you need further help, check this complete guide: https://www.cloudways.com/blog/magento-2-rest-api/







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 22 '18 at 11:58









                          Fayyaz KhattakFayyaz Khattak

                          1,5411022




                          1,5411022



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Magento Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f179015%2funable-to-access-rest-api-http-localhost-magento2-index-php-rest-v1-products%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Best approach to update all entries in a list that is paginated?Best way to add items to a paginated listChoose Your Country: Best Usability approachUpdate list when a user is viewing the list without annoying themWhen would the best day to update your webpage be?What should happen when I add a Row to a paginated, sorted listShould I adopt infinite scrolling or classical pagination?How to show user that page objects automatically updateWhat is the best location to locate the comments section in a list pageBest way to combine filtering and selecting items in a listWhen one of two inputs must be updated to satisfy a consistency criteria, which should you update (if at all)?

                              Тонконіг бульбистий Зміст Опис | Поширення | Екологія | Господарське значення | Примітки | Див. також | Література | Джерела | Посилання | Навігаційне меню1114601320038-241116202404kew-435458Poa bulbosaЭлектронный каталог сосудистых растений Азиатской России [Електронний каталог судинних рослин Азіатської Росії]Малышев Л. Л. Дикие родичи культурных растений. Poa bulbosa L. - Мятлик луковичный. [Малишев Л. Л. Дикі родичи культурних рослин. Poa bulbosa L. - Тонконіг бульбистий.]Мятлик (POA) Сем. Злаки (Мятликовые) [Тонконіг (POA) Род. Злаки (Тонконогові)]Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Description from Flora of China) [Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Опис від Флора Китаю)]Poa bulbosa L. – lipnice cibulkatá / lipnica cibulkatáPoa bulbosa в базі даних Poa bulbosa на сайті Poa bulbosa в базі даних «Global Biodiversity Information Facility» (GBIF)Poa bulbosa в базі даних «Euro + Med PlantBase» — інформаційному ресурсі для Євро-середземноморського розмаїття рослинPoa bulbosa L. на сайті «Плантариум»

                              Вунгтау (аеропорт) Загальні відомості | Див. також | Посилання | Навігаційне меню10°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.0833310°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.083337731608Vinh AirportVinh airport facelift improves serviceвиправивши або дописавши їївиправивши або дописавши їїр