Consumer is not authorized to access %resources magento 2Consumer is not authorized to access %resources for Magento2 rest APIConsumer is not authorized to access %resources selfUnable to get salesorders and Customers From Magento 2.2 using REST APIConsumer is not authorized to access %resources ? whyMagento 2 token integration errorRest API Error “Consumer is not authorized to access %resources”Magento 2 Rest API using basic AuthError Consumer is not authorized to access %resourcesI have created A new sample REST Api to GET method, Giving Consumer is not authorized to access the resource errorConsumer is not authorized to access %resources Magento_Sales::sales

Creepy dinosaur pc game identification

Open a doc from terminal, but not by its name

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

What exactly color does ozone gas have?

Calculating total slots

Mixing PEX brands

Does the UK parliament need to pass secondary legislation to accept the Article 50 extension

Store Credit Card Information in Password Manager?

What is the highest possible scrabble score for placing a single tile

Recommended PCB layout understanding - ADM2572 datasheet

Add big quotation marks inside my colorbox

Fear of getting stuck on one programming language / technology that is not used in my country

Did arcade monitors have same pixel aspect ratio as TV sets?

Why should universal income be universal?

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

Do the primes contain an infinite almost arithmetic progression?

How can mimic phobia be cured?

What is going on with 'gets(stdin)' on the site coderbyte?

Angel of Condemnation - Exile creature with second ability

Can disgust be a key component of horror?

Why is so much work done on numerical verification of the Riemann Hypothesis?

Why "had" in "[something] we would have made had we used [something]"?

Can I say "fingers" when referring to toes?

A binary search solution to 3Sum



Consumer is not authorized to access %resources magento 2


Consumer is not authorized to access %resources for Magento2 rest APIConsumer is not authorized to access %resources selfUnable to get salesorders and Customers From Magento 2.2 using REST APIConsumer is not authorized to access %resources ? whyMagento 2 token integration errorRest API Error “Consumer is not authorized to access %resources”Magento 2 Rest API using basic AuthError Consumer is not authorized to access %resourcesI have created A new sample REST Api to GET method, Giving Consumer is not authorized to access the resource errorConsumer is not authorized to access %resources Magento_Sales::sales













1















I try to get one particular customer orders that time i am facing below error.




"message": "Consumer is not authorized to access %resources",
"parameters":
"resources": "Magento_Catalog::products"



enter image description here



Any one please help me. how i fix this error.










share|improve this question






















  • Did you passed the authentication for the consumer?

    – ABHISHEK TRIPATHI
    Dec 7 '17 at 10:21















1















I try to get one particular customer orders that time i am facing below error.




"message": "Consumer is not authorized to access %resources",
"parameters":
"resources": "Magento_Catalog::products"



enter image description here



Any one please help me. how i fix this error.










share|improve this question






















  • Did you passed the authentication for the consumer?

    – ABHISHEK TRIPATHI
    Dec 7 '17 at 10:21













1












1








1








I try to get one particular customer orders that time i am facing below error.




"message": "Consumer is not authorized to access %resources",
"parameters":
"resources": "Magento_Catalog::products"



enter image description here



Any one please help me. how i fix this error.










share|improve this question














I try to get one particular customer orders that time i am facing below error.




"message": "Consumer is not authorized to access %resources",
"parameters":
"resources": "Magento_Catalog::products"



enter image description here



Any one please help me. how i fix this error.







magento2 rest-api






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 7 '17 at 9:55









Vinoth Kumar NVinoth Kumar N

612




612












  • Did you passed the authentication for the consumer?

    – ABHISHEK TRIPATHI
    Dec 7 '17 at 10:21

















  • Did you passed the authentication for the consumer?

    – ABHISHEK TRIPATHI
    Dec 7 '17 at 10:21
















Did you passed the authentication for the consumer?

– ABHISHEK TRIPATHI
Dec 7 '17 at 10:21





Did you passed the authentication for the consumer?

– ABHISHEK TRIPATHI
Dec 7 '17 at 10:21










3 Answers
3






active

oldest

votes


















1














Are you sure that your token is valid? I just checked it using postman too and was able to get list of products. Is your token for an admin or customer? Please, double check that. Customer do not have an access to these resources.



You can read in documentation that customer/admin tokes have different endpoints http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html



More detailed explanation:
The resource you are trying to get is configured as follow:



<route url="/V1/products" method="GET">
<service class="MagentoCatalogApiProductRepositoryInterface" method="getList"/>
<resources>
<resource ref="Magento_Catalog::products" />
</resources>
</route>`


Firstly:
ref="Magento_Catalog::products" means that only users with configured ACL which allow access to this resource are allowed to get it. In magento ONLY admin user can have a configuration of ACL.



Secondly: you are using token authentication. In magento you can obtain token either for a customer and for an admin. Since only admin with properly configured ACL can be authorized for this resource you must authenticate yourself with an admin token.



I can see that you are passing a token in your request so my assumption is that you pass a token for a customer or if this is admin's token then this particular admin user do not have access to this resource due to ACL missconfiguration.






share|improve this answer

























  • This is self customer.

    – Vinoth Kumar N
    Dec 7 '17 at 10:25











  • No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

    – Bartosz Herba
    Dec 7 '17 at 10:29











  • I am using magento 2

    – Vinoth Kumar N
    Dec 7 '17 at 10:30












  • That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

    – Bartosz Herba
    Dec 7 '17 at 10:33











  • Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

    – Bartosz Herba
    Dec 7 '17 at 10:39


















0














See this page: https://devdocs.magento.com/guides/v2.0/rest/anonymous-api-security.html



In short, you need to enable anonymous access. Once you do so, consumers and not only admins will be allowed to fetch products (actually, anyone will be able to). There are some security implications to this so you should consider them first. Quote from page:




"Preventing anonymous access to these APIs could cause third-party
integrations to fail. If a third-party integration calls any of these
web APIs, it will receive an authentication error instead of the
expected response. In this case, you might need to disable this
feature.



To disable this feature, log in to the Admin panel and navigate to
Stores > Settings > Configuration > Services > Magento Web API > Web
API Security. Then select Yes from the Allow Anonymous Guest Access
menu."






share








New contributor




Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



























    -1














    I have exact copy of magento running in two different server. On one server I am getting result but on another server I am getting error as:



    "message": "Consumer is not authorized to access %resources",
    "parameters":
    "resources": "Magento_Customer::customer"






    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%2f204879%2fconsumer-is-not-authorized-to-access-resources-magento-2%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      Are you sure that your token is valid? I just checked it using postman too and was able to get list of products. Is your token for an admin or customer? Please, double check that. Customer do not have an access to these resources.



      You can read in documentation that customer/admin tokes have different endpoints http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html



      More detailed explanation:
      The resource you are trying to get is configured as follow:



      <route url="/V1/products" method="GET">
      <service class="MagentoCatalogApiProductRepositoryInterface" method="getList"/>
      <resources>
      <resource ref="Magento_Catalog::products" />
      </resources>
      </route>`


      Firstly:
      ref="Magento_Catalog::products" means that only users with configured ACL which allow access to this resource are allowed to get it. In magento ONLY admin user can have a configuration of ACL.



      Secondly: you are using token authentication. In magento you can obtain token either for a customer and for an admin. Since only admin with properly configured ACL can be authorized for this resource you must authenticate yourself with an admin token.



      I can see that you are passing a token in your request so my assumption is that you pass a token for a customer or if this is admin's token then this particular admin user do not have access to this resource due to ACL missconfiguration.






      share|improve this answer

























      • This is self customer.

        – Vinoth Kumar N
        Dec 7 '17 at 10:25











      • No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

        – Bartosz Herba
        Dec 7 '17 at 10:29











      • I am using magento 2

        – Vinoth Kumar N
        Dec 7 '17 at 10:30












      • That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

        – Bartosz Herba
        Dec 7 '17 at 10:33











      • Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

        – Bartosz Herba
        Dec 7 '17 at 10:39















      1














      Are you sure that your token is valid? I just checked it using postman too and was able to get list of products. Is your token for an admin or customer? Please, double check that. Customer do not have an access to these resources.



      You can read in documentation that customer/admin tokes have different endpoints http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html



      More detailed explanation:
      The resource you are trying to get is configured as follow:



      <route url="/V1/products" method="GET">
      <service class="MagentoCatalogApiProductRepositoryInterface" method="getList"/>
      <resources>
      <resource ref="Magento_Catalog::products" />
      </resources>
      </route>`


      Firstly:
      ref="Magento_Catalog::products" means that only users with configured ACL which allow access to this resource are allowed to get it. In magento ONLY admin user can have a configuration of ACL.



      Secondly: you are using token authentication. In magento you can obtain token either for a customer and for an admin. Since only admin with properly configured ACL can be authorized for this resource you must authenticate yourself with an admin token.



      I can see that you are passing a token in your request so my assumption is that you pass a token for a customer or if this is admin's token then this particular admin user do not have access to this resource due to ACL missconfiguration.






      share|improve this answer

























      • This is self customer.

        – Vinoth Kumar N
        Dec 7 '17 at 10:25











      • No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

        – Bartosz Herba
        Dec 7 '17 at 10:29











      • I am using magento 2

        – Vinoth Kumar N
        Dec 7 '17 at 10:30












      • That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

        – Bartosz Herba
        Dec 7 '17 at 10:33











      • Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

        – Bartosz Herba
        Dec 7 '17 at 10:39













      1












      1








      1







      Are you sure that your token is valid? I just checked it using postman too and was able to get list of products. Is your token for an admin or customer? Please, double check that. Customer do not have an access to these resources.



      You can read in documentation that customer/admin tokes have different endpoints http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html



      More detailed explanation:
      The resource you are trying to get is configured as follow:



      <route url="/V1/products" method="GET">
      <service class="MagentoCatalogApiProductRepositoryInterface" method="getList"/>
      <resources>
      <resource ref="Magento_Catalog::products" />
      </resources>
      </route>`


      Firstly:
      ref="Magento_Catalog::products" means that only users with configured ACL which allow access to this resource are allowed to get it. In magento ONLY admin user can have a configuration of ACL.



      Secondly: you are using token authentication. In magento you can obtain token either for a customer and for an admin. Since only admin with properly configured ACL can be authorized for this resource you must authenticate yourself with an admin token.



      I can see that you are passing a token in your request so my assumption is that you pass a token for a customer or if this is admin's token then this particular admin user do not have access to this resource due to ACL missconfiguration.






      share|improve this answer















      Are you sure that your token is valid? I just checked it using postman too and was able to get list of products. Is your token for an admin or customer? Please, double check that. Customer do not have an access to these resources.



      You can read in documentation that customer/admin tokes have different endpoints http://devdocs.magento.com/guides/v2.0/get-started/authentication/gs-authentication-token.html



      More detailed explanation:
      The resource you are trying to get is configured as follow:



      <route url="/V1/products" method="GET">
      <service class="MagentoCatalogApiProductRepositoryInterface" method="getList"/>
      <resources>
      <resource ref="Magento_Catalog::products" />
      </resources>
      </route>`


      Firstly:
      ref="Magento_Catalog::products" means that only users with configured ACL which allow access to this resource are allowed to get it. In magento ONLY admin user can have a configuration of ACL.



      Secondly: you are using token authentication. In magento you can obtain token either for a customer and for an admin. Since only admin with properly configured ACL can be authorized for this resource you must authenticate yourself with an admin token.



      I can see that you are passing a token in your request so my assumption is that you pass a token for a customer or if this is admin's token then this particular admin user do not have access to this resource due to ACL missconfiguration.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited Dec 7 '17 at 11:57

























      answered Dec 7 '17 at 10:13









      Bartosz HerbaBartosz Herba

      94518




      94518












      • This is self customer.

        – Vinoth Kumar N
        Dec 7 '17 at 10:25











      • No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

        – Bartosz Herba
        Dec 7 '17 at 10:29











      • I am using magento 2

        – Vinoth Kumar N
        Dec 7 '17 at 10:30












      • That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

        – Bartosz Herba
        Dec 7 '17 at 10:33











      • Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

        – Bartosz Herba
        Dec 7 '17 at 10:39

















      • This is self customer.

        – Vinoth Kumar N
        Dec 7 '17 at 10:25











      • No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

        – Bartosz Herba
        Dec 7 '17 at 10:29











      • I am using magento 2

        – Vinoth Kumar N
        Dec 7 '17 at 10:30












      • That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

        – Bartosz Herba
        Dec 7 '17 at 10:33











      • Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

        – Bartosz Herba
        Dec 7 '17 at 10:39
















      This is self customer.

      – Vinoth Kumar N
      Dec 7 '17 at 10:25





      This is self customer.

      – Vinoth Kumar N
      Dec 7 '17 at 10:25













      No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

      – Bartosz Herba
      Dec 7 '17 at 10:29





      No, it is not. What version of Magento you are using? And if you think that it is a self consumer then why would you pass auth token? In MagentoCatalogetcwebapi.xml on [line:30] there is a configuration for this endpoint. As you can see there is an resource attached which means that you need to follow one of the authentication path. And it is not self.

      – Bartosz Herba
      Dec 7 '17 at 10:29













      I am using magento 2

      – Vinoth Kumar N
      Dec 7 '17 at 10:30






      I am using magento 2

      – Vinoth Kumar N
      Dec 7 '17 at 10:30














      That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

      – Bartosz Herba
      Dec 7 '17 at 10:33





      That is great, I am talking about magento, hovewer as you might notice magento2 already has 3 meaningfull versions: 2.0.x, 2.1.x, 2.2.x, still, you need a token for an admin and this particular admin user must have properly set ACl

      – Bartosz Herba
      Dec 7 '17 at 10:33













      Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

      – Bartosz Herba
      Dec 7 '17 at 10:39





      Sorry... what? You want me to create new topic with question "Are you sure that you use appropriate token?" Really?

      – Bartosz Herba
      Dec 7 '17 at 10:39













      0














      See this page: https://devdocs.magento.com/guides/v2.0/rest/anonymous-api-security.html



      In short, you need to enable anonymous access. Once you do so, consumers and not only admins will be allowed to fetch products (actually, anyone will be able to). There are some security implications to this so you should consider them first. Quote from page:




      "Preventing anonymous access to these APIs could cause third-party
      integrations to fail. If a third-party integration calls any of these
      web APIs, it will receive an authentication error instead of the
      expected response. In this case, you might need to disable this
      feature.



      To disable this feature, log in to the Admin panel and navigate to
      Stores > Settings > Configuration > Services > Magento Web API > Web
      API Security. Then select Yes from the Allow Anonymous Guest Access
      menu."






      share








      New contributor




      Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.
























        0














        See this page: https://devdocs.magento.com/guides/v2.0/rest/anonymous-api-security.html



        In short, you need to enable anonymous access. Once you do so, consumers and not only admins will be allowed to fetch products (actually, anyone will be able to). There are some security implications to this so you should consider them first. Quote from page:




        "Preventing anonymous access to these APIs could cause third-party
        integrations to fail. If a third-party integration calls any of these
        web APIs, it will receive an authentication error instead of the
        expected response. In this case, you might need to disable this
        feature.



        To disable this feature, log in to the Admin panel and navigate to
        Stores > Settings > Configuration > Services > Magento Web API > Web
        API Security. Then select Yes from the Allow Anonymous Guest Access
        menu."






        share








        New contributor




        Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






















          0












          0








          0







          See this page: https://devdocs.magento.com/guides/v2.0/rest/anonymous-api-security.html



          In short, you need to enable anonymous access. Once you do so, consumers and not only admins will be allowed to fetch products (actually, anyone will be able to). There are some security implications to this so you should consider them first. Quote from page:




          "Preventing anonymous access to these APIs could cause third-party
          integrations to fail. If a third-party integration calls any of these
          web APIs, it will receive an authentication error instead of the
          expected response. In this case, you might need to disable this
          feature.



          To disable this feature, log in to the Admin panel and navigate to
          Stores > Settings > Configuration > Services > Magento Web API > Web
          API Security. Then select Yes from the Allow Anonymous Guest Access
          menu."






          share








          New contributor




          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.










          See this page: https://devdocs.magento.com/guides/v2.0/rest/anonymous-api-security.html



          In short, you need to enable anonymous access. Once you do so, consumers and not only admins will be allowed to fetch products (actually, anyone will be able to). There are some security implications to this so you should consider them first. Quote from page:




          "Preventing anonymous access to these APIs could cause third-party
          integrations to fail. If a third-party integration calls any of these
          web APIs, it will receive an authentication error instead of the
          expected response. In this case, you might need to disable this
          feature.



          To disable this feature, log in to the Admin panel and navigate to
          Stores > Settings > Configuration > Services > Magento Web API > Web
          API Security. Then select Yes from the Allow Anonymous Guest Access
          menu."







          share








          New contributor




          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.








          share


          share






          New contributor




          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 8 mins ago









          SamSam

          101




          101




          New contributor




          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Sam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





















              -1














              I have exact copy of magento running in two different server. On one server I am getting result but on another server I am getting error as:



              "message": "Consumer is not authorized to access %resources",
              "parameters":
              "resources": "Magento_Customer::customer"






              share|improve this answer



























                -1














                I have exact copy of magento running in two different server. On one server I am getting result but on another server I am getting error as:



                "message": "Consumer is not authorized to access %resources",
                "parameters":
                "resources": "Magento_Customer::customer"






                share|improve this answer

























                  -1












                  -1








                  -1







                  I have exact copy of magento running in two different server. On one server I am getting result but on another server I am getting error as:



                  "message": "Consumer is not authorized to access %resources",
                  "parameters":
                  "resources": "Magento_Customer::customer"






                  share|improve this answer













                  I have exact copy of magento running in two different server. On one server I am getting result but on another server I am getting error as:



                  "message": "Consumer is not authorized to access %resources",
                  "parameters":
                  "resources": "Magento_Customer::customer"







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 17 '18 at 8:34









                  ram666ram666

                  297




                  297



























                      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%2f204879%2fconsumer-is-not-authorized-to-access-resources-magento-2%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

                      Jet Time Laivasto | Lähteet | Aiheesta muualla | NavigointivalikkoJet Time - The CompanyThe CompanyManagementJet Time aloittaa lauantaina Suomi-rekisterissä olevalla Boeing 737 -koneellaJettime Finland Fleet Details and HistoryJettime Fleet Details and HistoryRegional Jet OÜ takes over ATR production for SASJet Time Returns To Its Core BusinessYhtiön kotisivutlaajentamalla

                      Olympian arkeologinen museo Sisällysluettelo Historia ja rakennus | Kokoelmat | Lähteet | Aiheesta muualla | Navigointivalikko37°38′36″N, 21°37′46″EInfobox OKArchaeological Museum of Olympia: HistoryArchaeological Museum of Olympia: DescriptionΜουσείο Ιστορίας των Ολυμπιακών Αγώνων της Αρχαιότητας: ΙστορικόArchaeological Museum of Olympia

                      Äpy Sisällysluettelo Äpyt kautta historian | Esimerkkejä Äpy-huumorista | Katso myös | Kirjallisuutta | Aiheesta muualla | Navigointivalikkowww.äpy.fi