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
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"

Any one please help me. how i fix this error.
magento2 rest-api
add a comment |
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"

Any one please help me. how i fix this error.
magento2 rest-api
Did you passed the authentication for the consumer?
– ABHISHEK TRIPATHI
Dec 7 '17 at 10:21
add a comment |
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"

Any one please help me. how i fix this error.
magento2 rest-api
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"

Any one please help me. how i fix this error.
magento2 rest-api
magento2 rest-api
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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
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.
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
add a comment |
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."
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.
add a comment |
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"
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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."
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.
add a comment |
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."
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.
add a comment |
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."
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."
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.
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.
add a comment |
add a comment |
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"
add a comment |
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"
add a comment |
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"
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"
answered May 17 '18 at 8:34
ram666ram666
297
297
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Did you passed the authentication for the consumer?
– ABHISHEK TRIPATHI
Dec 7 '17 at 10:21